diff options
author | John MacFarlane <jgm@berkeley.edu> | 2014-10-24 20:22:05 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2014-10-24 20:26:03 -0700 |
commit | abc95bdfa1fd4f4ffb5b0727aec34791a6e472e5 (patch) | |
tree | 41d7aadcb3a91edd0610da1cd85d9c0a1c02fff7 /man/man1/cmark.1 | |
parent | 7f0d1a80c7871a97dcf6495fba9f0e3c8d86be81 (diff) |
Renamed c program and library stmd -> cmark.
Also renamed internal library functions accordingly.
Diffstat (limited to 'man/man1/cmark.1')
-rw-r--r-- | man/man1/cmark.1 | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/man/man1/cmark.1 b/man/man1/cmark.1 new file mode 100644 index 0000000..65e10c1 --- /dev/null +++ b/man/man1/cmark.1 @@ -0,0 +1,32 @@ +.TH "cmark" "1" "October 22, 2014" "cmark manual" "" +.SH NAME +.PP +cmark \- convert CommonMark formatted text to HTML +.SH SYNOPSIS +.PP +cmark [\f[I]options\f[]] [file*] +.SH DESCRIPTION +.PP +\f[C]cmark\f[] acts as a pipe, reading from stdin or from the specified +files and writing to stdout. +It converts Markdown formatted plain text to HTML, using the conventions +described in the CommonMark spec. +.SH OPTIONS +.TP +.B \f[C]\-\-ast\f[] +Print an abstract syntax tree instead of HTML. +.RS +.RE +.TP +.B \f[C]\-\-help\f[] +Print usage information. +.RS +.RE +.TP +.B \f[C]\-\-version\f[] +Print version. +.RS +.RE +.SH AUTHORS +.PP +John MacFarlane |