afs commented on code in PR #161:
URL: https://github.com/apache/jena-site/pull/161#discussion_r1242649614


##########
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:
   Its also possible to write
   ```
     RDFWriter.source(model)
       .format(RDFFormat.TURTLE_LONG)
       .output(System.out);
   ```



-- 
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: dev-unsubscr...@jena.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to