diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/serd/writer.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/serd/writer.h b/include/serd/writer.h index 91baa7e8..5e8f5e6e 100644 --- a/include/serd/writer.h +++ b/include/serd/writer.h @@ -80,6 +80,13 @@ typedef enum { carefully, since it can result in data loss. */ SERD_WRITE_LAX = 1U << 4U, + + /** + Write rdf:type as a normal predicate. + + This disables the special "a" syntax in Turtle and TriG. + */ + SERD_WRITE_LONGHAND = 1U << 5U, } SerdWriterFlag; /// Bitwise OR of #SerdWriterFlag values |