1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
|
.\" Hey, EMACS: -*- nroff -*-
.TH PARSEWIKI 1 "July 2003" "parsewiki 0.4.3" "User Commands"
.\" Please adjust this date whenever revising the manpage.
.SH NAME
parsewiki \- transform marked text into HTML, XHTML, Docbook or LaTeX
.SH SYNOPSIS
.B parsewiki
[\fIOPTION\fR]... [\fIFILE\fR]
.SH DESCRIPTION
This manual page documents briefly the
.B parsewiki
command.
This manual page was written for the Debian distribution
because the original program does not have a manual page.
.PP
\fBparsewiki\fP is a program that transform a text file with a very minimal
Wiki style syntax into other formats, including HTML, XHTML, Docbook
and LaTeX.
.PP
See the file
.I /usr/share/doc/parsewiki/doc/manual-en.txt
for a description of the parsewiki syntax.
.SH OPTIONS
.TP
\fB\-f\fR, \fB\-\-format\fR=\fIFORMAT\fR
Output format; one of html, xhtml, docbook, latex.
(default html)
.TP
\fB\-T\fR, \fB\-\-title\fR=\fITITLE\fR
Title.
.TP
\fB\-t\fR, \fB\-\-template\fR=\fIFILE\fR
File with a template to use instead of the standard.
.TP
\fB\-c\fR, \fB\-\-copyright\fR
Display copyright and copying permission statement.
.TP
\fB\-h\fR, \fB\-\-help\fR
Show this usage summary.
.PP
FILE is a simple text file with wiki formating syntax. The result will be
sent to the Standard Output. If FILE is not given, input will be taken from
the Standard Input.
.SH EXAMPLES
.PP
$ parsewiki myfile.wiki
.br
$ cat file.txt | parsewiki \fB\-fdocbook\fR \fB\-\-title=\fR"An Example" > file.xml
.SH "BUGS"
Report bugs to <villate@gnu.org>.
.SH AUTHOR
This manual page was written by Sergio Talens-Oliag <sto@debian.org>,
for the Debian project (but may be used by others).
|