FIX markup
[docutils.git] / test / functional / input / standalone_rst_manpage.txt
blob90bdf4ed517e146ee648cf01186a0824cf38778c
1 =========
2  rst2man
3 =========
5 ---------------------------------------------
6 generate unix manpages from reStructured text
7 ---------------------------------------------
9 :Author: grubert@users.sourceforge.net
10 :Date:   2006-10-22
11 :Copyright: public domain
12 :Version: 0.1
13 :Manual section: 1
14 :Manual group: text processing
16 .. TODO: authors and author with name <email>
18 SYNOPSIS
19 ========
21   rst2man.py inputfile outputfile
23 DESCRIPTION
24 ===========
26 rst2man transforms a reStructured text document into a unix man page.
28 In theory any valid reStructured text document should be processable,
29 in reality this is
31 * a goal, that is not met yet
32 * a goal that might never be met, because only few constructs are
33   used in man pages *and* because the common text file does not adhere
34   to man page requirements. 
35   
36   For example a unix man page belongs into a numbered section, 1 is 
37   user commands, 8 contains administrator commands and the headlines
38   of all manpages are collected into a database, queryable with the
39   programm ``apropos``, therefore the headline should contain a short
40   text describing into which group this command belongs.
42   These informations are collected from title, subtitle and the
43   docinfo, see this document as an example.
45 OPTIONS
46 =======
48 --config=<file>         Read configuration settings from <file>, if it exists.
49 --version, -V           Show this program's version number and exit.
50 --help, -h              Show this help message and exit.
52 And a lot more standard docutils options.
54 FILES
55 =====
57 None yet.
59 SEE ALSO
60 ========
62 `docutils <http://docutils.sourceforge.net>`__
63 `linux man page howto <http://tldp.org/HOWTO/Man-Page/>`__
65 and ``man man`` also ``man 7 man``
67 BUGS
68 ====
70 1. Format options are included as they are required. 
71 2. bullet lists
72 3. number lists
73 4. math: The LaTeX source is shown, e.g. :math:`n! + \sin(x_n^2)`.
76 Discussion is still open.