diff options
author | John MacFarlane <fiddlosopher@gmail.com> | 2013-06-27 19:32:28 -0700 |
---|---|---|
committer | John MacFarlane <fiddlosopher@gmail.com> | 2013-06-27 19:32:28 -0700 |
commit | dd96213c055d72b65e0c70552d9b4e3a824ba3ee (patch) | |
tree | b7556b66e207257093a4f9653fa9f1c96a995844 /README | |
parent | 82e46bf3852b776defab85f3347115260d332250 (diff) | |
download | pandoc-dd96213c055d72b65e0c70552d9b4e3a824ba3ee.tar.gz |
Man writer: give more fine-grained control in template.
Now the `title`, `section`, `header`, and `footer` can all be set
individually in metadata. The `description` variable has been
removed.
Quotes have been added so that spaces are allowed in the title.
If you have a title that begins
COMMAND(1) footer here | header here
pandoc will parse it as before into a title, section, header, and
footer. But you can also specify these elements explicitly.
Closes #885.
Diffstat (limited to 'README')
-rw-r--r-- | README | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -793,6 +793,12 @@ depending on the output format, but include: : color for citation links in LaTeX documents `links-as-notes` : causes links to be printed as footnotes in LaTeX documents +`section` +: section number in man pages +`header` +: header in man pages +`footer` +: footer in man pages Variables may be set at the command line using the `-V/--variable` option. This allows users to include custom variables in their |