rdflib 2.3.0-c126ac01 → 2.3.0-c8138d2c
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -65,7 +65,7 @@ npm install --save rdflib
|
|
|
65
65
|
|
|
66
66
|
## Serializer flags
|
|
67
67
|
|
|
68
|
-
The Turtle/N3/JSON‑LD serializers accept an optional flags string to tweak output formatting and abbreviation behavior.
|
|
68
|
+
The Turtle/N3/JSON‑LD serializers accept an optional `flags` string to tweak output formatting and abbreviation behavior.
|
|
69
69
|
|
|
70
70
|
- Pass flags via the options argument to `serialize(...)`:
|
|
71
71
|
|
|
@@ -86,7 +86,7 @@ Common flags used internally (you can combine them, e.g. `'o k'`):
|
|
|
86
86
|
- `d e i n p r s t u x` – used for N-Triples/N-Quads to simplify output
|
|
87
87
|
- `dr` – used with JSON‑LD conversion (no default, no relative prefix)
|
|
88
88
|
- `o` – new: do not abbreviate to a prefixed name when the local part contains a dot. This keeps IRIs like
|
|
89
|
-
`http://
|
|
89
|
+
`http://example.org/ns/subject.example` in `<...>` form instead of `ns:subject.example`.
|
|
90
90
|
|
|
91
91
|
Notes:
|
|
92
92
|
|