aboutsummaryrefslogtreecommitdiffstats
path: root/doc/serdi.1
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2021-03-07 00:16:24 -0500
committerDavid Robillard <d@drobilla.net>2021-03-07 15:19:54 -0500
commit36f1cecc1fdb803bf04d2ab60bd13dd257a9e525 (patch)
tree9d3dbd1dfea2dd9d50a16b7c694b846db27c3703 /doc/serdi.1
parent1c1645ed45f40a2d73101c6237b19b28aad2b598 (diff)
downloadserd-36f1cecc1fdb803bf04d2ab60bd13dd257a9e525.tar.gz
serd-36f1cecc1fdb803bf04d2ab60bd13dd257a9e525.tar.bz2
serd-36f1cecc1fdb803bf04d2ab60bd13dd257a9e525.zip
Rewrite man page in mdoc and use mandoc to generate HTML
Diffstat (limited to 'doc/serdi.1')
-rw-r--r--doc/serdi.1226
1 files changed, 149 insertions, 77 deletions
diff --git a/doc/serdi.1 b/doc/serdi.1
index fefafd67..8747be92 100644
--- a/doc/serdi.1
+++ b/doc/serdi.1
@@ -1,84 +1,156 @@
-.TH SERDI 1 "05 Jan 2017"
-
-.SH NAME
-.B serdi \- Read and write RDF syntax
-
-.SH SYNOPSIS
-serdi [\fIOPTION\fR]... \fIINPUT\fR \fIBASE_URI\fR
-
-.SH OPTIONS
-
-.TP
-.BR \-a
-Write ASCII output if possible.
-
-.TP
-.BR \-b
-Fast bulk output for large serialisations.
-
-.TP
-.BR \-c " " \fIPREFIX\fR
-Chop \fIPREFIX\fR from matching blank node IDs.
-
-.TP
-.BR \-e
+.Dd March 6, 2021
+.Dt SERDI 1
+.Os Serd 0.30.11
+.Sh NAME
+.Nm serdi
+.Nd read and write RDF syntax
+.Sh SYNOPSIS
+.Nm serdi
+.Op Fl abefhlqv
+.Op Fl c Ar prefix
+.Op Fl i Ar syntax
+.Op Fl o Ar syntax
+.Op Fl p Ar prefix
+.Op Fl r Ar root
+.Op Fl s Ar input
+.Ar input
+.Op Ar base_uri
+.Sh DESCRIPTION
+.Nm
+is a fast command-line utility for streaming and processing RDF data.
+It reads an RDF document and writes the data to stdout,
+possibly transformed and/or in a different syntax.
+By default,
+the input syntax is guessed from the file extension,
+and output is written in NTriples or NQuads.
+.Pp
+.Nm
+can be used to check for syntax errors,
+convert from one syntax to another,
+pretty-print documents,
+or transform URIs and blank node IDs.
+.Pp
+The options are as follows:
+.Pp
+.Bl -tag -compact -width 3n
+.It Fl a
+Write ASCII output.
+If this is enabled, all non-ASCII characters will be escaped, even if the output syntax allows them to be written in UTF-8.
+.Pp
+.It Fl b
+Bulk output writing.
+If this is enabled, output will be written a page at a time, rather than a byte at a time.
+.Pp
+.It Fl c Ar prefix
+Chop
+.Ar prefix
+from matching blank node IDs.
+This is the inverse of
+.Fl p .
+.Pp
+.It Fl e
Eat input one character at a time, rather than a page at a time which is the default.
This is useful when reading from a pipe since output will be generated immediately as input arrives, rather than waiting until an entire page of input has arrived.
With this option serdi uses one page less memory, but will likely be significantly slower.
-
-.TP
-.BR \-f
-Keep full URIs in input (don't qualify).
-
-.TP
-.BR \-h
+.Pp
+.It Fl f
+Keep full URIs in input (don't qualify with namespace prefixes or make URIs relative).
+.Pp
+.It Fl h
Print the command line options.
-
-.TP
-.BR \-i " " \fISYNTAX\fR
-Read input as \fISYNTAX\fR.
-Valid values (case-insensitive): \*(lqturtle\*(rq, \*(lqntriples\*(rq, \*(lqtrig\*(rq, \*(lqnquads\*(rq.
-
-.TP
-.BR \-l
+.Pp
+.It Fl i Ar syntax
+Read input as
+.Ar syntax .
+Case is ignored, valid values are:
+.Dq NQuads ,
+.Dq NTriples ,
+.Dq TriG ,
+.Dq Turtle .
+.Pp
+.It Fl l
Lax (non-strict) parsing.
-
-.TP
-.BR \-o " " \fISYNTAX\fR
-Write output as \fISYNTAX\fR.
-Valid values (case-insensitive): \*(lqturtle\*(rq, \*(lqntriples\*(rq, \*(lqtrig\*(rq, \*(lqnquads\*(rq.
-
-.TP
-.BR \-p " " \fIPREFIX\fR
-Add \fIPREFIX\fR to blank node IDs.
-
-.TP
-.BR \-q
+If this is enabled, recoverable syntax errors will print a warning, but parsing will proceed starting at the next statement if possible.
+Note that data may be lost when using this option.
+.Pp
+.It Fl o Ar syntax
+Write output as
+.Ar syntax .
+Case is ignored, valid values are:
+.Dq NQuads ,
+.Dq NTriples ,
+.Dq TriG ,
+.Dq Turtle .
+.Pp
+.It Fl p Ar prefix
+Add
+.Ar prefix
+to blank node IDs.
+This can be used to avoid clashes between blank node IDs in input documents.
+.Pp
+.It Fl q
Suppress all output except data.
-
-.TP
-.BR \-r " " \fIROOT_URI\fR
-Keep relative URIs within \fIROOT_URI\fR.
-
-.TP
-.BR \-s " " \fIINPUT\fR
-Parse \fIINPUT\fR as a string (terminates options).
-
-.TP
-.BR \-v
+.Pp
+.It Fl r Ar root
+Keep relative URIs within a
+.Ar root
+URI.
+This will avoid creating any relative URI references with leading path segments like
+.Dq ../
+that enter a parent of
+.Ar root .
+.Pp
+.It Fl s Ar string
+Parse
+.Ar string
+input instead of a file (terminates options).
+.Pp
+.It Fl v
Display version information and exit.
-
-.SH AUTHOR
-Serdi was written by David Robillard <d@drobilla.net>
-
-.SH COPYRIGHT
-Copyright \(co 2011-2020 David Robillard.
-.br
-License: <http://www.opensource.org/licenses/isc>
-.br
-This is free software; you are free to change and redistribute it.
-.br
-There is NO WARRANTY, to the extent permitted by law.
-
-.SH "SEE ALSO"
-<http://drobilla.net/software/serd>
+.El
+.Sh EXIT STATUS
+.Nm
+exits with a status of 0, or non-zero if an error occured.
+.Sh SEE ALSO
+.Bl -item -compact
+.It
+.Lk http://drobilla.net/software/serd/
+.It
+.Lk http://gitlab.com/drobilla/serd/
+.El
+.Sh STANDARDS
+.Bl -item
+.It
+.Rs
+.%A W3C
+.%T RDF 1.1 NQuads
+.%D February 2014
+.Re
+.Lk https://www.w3.org/TR/n-quads/
+.It
+.Rs
+.%A W3C
+.%D February 2014
+.%T RDF 1.1 NTriples
+.Re
+.Lk https://www.w3.org/TR/n-triples/
+.It
+.Rs
+.%A W3C
+.%T RDF 1.1 TriG
+.%D February 2014
+.Re
+.Lk https://www.w3.org/TR/trig/
+.It
+.Rs
+.%A W3C
+.%D February 2014
+.%T RDF 1.1 Turtle
+.Re
+.Lk https://www.w3.org/TR/turtle/
+.El
+.Sh AUTHORS
+.Nm
+is a part of serd, by
+.An David Robillard
+.Mt d@drobilla.net .