rybesh commented on code in PR #161:
URL: https://github.com/apache/jena-site/pull/161#discussion_r1242655709
##########
source/documentation/io/rdf-output.md:
##########
@@ -275,6 +281,19 @@ and in code:
.lang(Lang.TTL)
.output(System.out);
```
+
+##### _Setting indent style_
+```
+ riot --set ttl:indentStyle=long --formatted=ttl file1.rdf file2.nt ...
+```
+and in code:
+```
+ RDFWriter.source(model)
+ .set(RIOT.symTurtleIndentStyle, "long")
+ .lang(Lang.TTL)
Review Comment:
I added your example.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]