summaryrefslogtreecommitdiff
path: root/man/cmark.1.md
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2014-10-24 20:22:05 -0700
committerJohn MacFarlane <jgm@berkeley.edu>2014-10-24 20:26:03 -0700
commitabc95bdfa1fd4f4ffb5b0727aec34791a6e472e5 (patch)
tree41d7aadcb3a91edd0610da1cd85d9c0a1c02fff7 /man/cmark.1.md
parent7f0d1a80c7871a97dcf6495fba9f0e3c8d86be81 (diff)
Renamed c program and library stmd -> cmark.
Also renamed internal library functions accordingly.
Diffstat (limited to 'man/cmark.1.md')
-rw-r--r--man/cmark.1.md36
1 files changed, 36 insertions, 0 deletions
diff --git a/man/cmark.1.md b/man/cmark.1.md
new file mode 100644
index 0000000..ddc1b42
--- /dev/null
+++ b/man/cmark.1.md
@@ -0,0 +1,36 @@
+---
+title: cmark
+section: 1
+footer: cmark manual
+date: October 22, 2014
+...
+
+# NAME
+
+cmark - convert CommonMark formatted text to HTML
+
+# SYNOPSIS
+
+cmark [*options*] [file\*]
+
+# DESCRIPTION
+
+`cmark` 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.
+
+# OPTIONS
+
+`--ast`
+: Print an abstract syntax tree instead of HTML.
+
+`--help`
+: Print usage information.
+
+`--version`
+: Print version.
+
+# AUTHORS
+
+John MacFarlane