summaryrefslogtreecommitdiff
path: root/man
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2014-11-30 12:16:28 -0800
committerJohn MacFarlane <jgm@berkeley.edu>2014-11-30 12:16:28 -0800
commitd0571571f1f20343622214e6e919e509c43a93b9 (patch)
tree65028b7652ae9e26f62577a0a402cc224de7a26f /man
parent75be85f77f02c8185e8fff607bf3ccf3c8fe3a11 (diff)
Removed markdown intermediary for man 1 page.
See #224.
Diffstat (limited to 'man')
-rw-r--r--man/cmark.1.md37
1 files changed, 0 insertions, 37 deletions
diff --git a/man/cmark.1.md b/man/cmark.1.md
deleted file mode 100644
index 19a2d14..0000000
--- a/man/cmark.1.md
+++ /dev/null
@@ -1,37 +0,0 @@
----
-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. If multiple files are specified, the contents of the files are
-simply concatenated before parsing.
-
-# OPTIONS
-
-`--ast`
-: Print an abstract syntax tree instead of HTML.
-
-`--help`
-: Print usage information.
-
-`--version`
-: Print version.
-
-# AUTHORS
-
-John MacFarlane