diff options
author | John MacFarlane <jgm@berkeley.edu> | 2015-07-01 11:21:34 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2015-07-01 11:27:15 -0700 |
commit | a04c15a422cac279e75b012db9614cdc85aa1188 (patch) | |
tree | 55660afa214a1de454c7ddc0edefbfe150664479 /man/pandoc.1.template | |
parent | 6862aa26871071a5e9072e32f559321af3f88793 (diff) | |
download | pandoc-a04c15a422cac279e75b012db9614cdc85aa1188.tar.gz |
New method for building man pages.
+ Removed `--man1`, `--man5` options (breaking change).
+ Removed `Text.Pandoc.ManPages` module (breaking API change).
+ Version bump to 1.15 because of the breaking changes, even
though they involve features that have only been in pandoc
for a day.
+ Makefile target for `man/man1/pandoc.1`. This uses pandoc to
create the man page from README using a custom template and filters.
+ Added `man/` directory with template and filters needed to build
man page.
+ We no longer have two man pages: pandoc.1 and pandoc_markdown.5.
Now there is just pandoc.1, which has all the content from README.
This change was needed because of the extensive cross-references
between parts of the README.
+ Removed old `data/pandoc.1.template` and
`data/pandoc_markdown.5.template`.
Diffstat (limited to 'man/pandoc.1.template')
-rw-r--r-- | man/pandoc.1.template | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/man/pandoc.1.template b/man/pandoc.1.template new file mode 100644 index 000000000..6a1c26a52 --- /dev/null +++ b/man/pandoc.1.template @@ -0,0 +1,10 @@ +$if(has-tables)$ +.\"t +$endif$ +.TH PANDOC 1 "$date$" "$version$" +.SH NAME +pandoc - general markup converter +$body$ +.PP +The Pandoc source code and all documentation may be downloaded +from <http://pandoc.org>. |