cmark

My personal build of CMark ✏️

Commit
b44b188894a057e78459a3af4c4e75c1862d23a0
Parent
b15d2b81c2ce3f6b29f790541abeabe36f433562
Author
John MacFarlane <jgm@berkeley.edu>
Date

Added man page for stmd.

Diffstat

3 files changed, 75 insertions, 0 deletions

Status File Name N° Changes Insertions Deletions
Added man/Makefile 7 7 0
Added man/man1/stmd.1 32 32 0
Added man/stmd.1.md 36 36 0
diff --git a/man/Makefile b/man/Makefile
@@ -0,0 +1,7 @@
+ALL=man1/stmd.1
+
+.PHONY: all
+
+all: $(ALL)
+man1/%.1: %.1.md
+	pandoc $< -o $@ -s -t man
diff --git a/man/man1/stmd.1 b/man/man1/stmd.1
@@ -0,0 +1,32 @@
+.TH "stmd" "1" "August 12, 2014" "stmd manual" ""
+.SH NAME
+.PP
+stmd \- convert markdown formatted text to HTML
+.SH SYNOPSIS
+.PP
+stmd [\f[I]options\f[]] [file*]
+.SH DESCRIPTION
+.PP
+\f[C]stmd\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 standard markdown 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
diff --git a/man/stmd.1.md b/man/stmd.1.md
@@ -0,0 +1,36 @@
+---
+title: stmd
+section: 1
+footer: stmd manual
+date: August 12, 2014
+...
+
+# NAME
+
+stmd - convert markdown formatted text to HTML
+
+# SYNOPSIS
+
+stmd [*options*] [file\*]
+
+# DESCRIPTION
+
+`stmd` 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 standard
+markdown spec.
+
+# OPTIONS
+
+`--ast`
+:   Print an abstract syntax tree instead of HTML.
+
+`--help`
+:   Print usage information.
+
+`--version`
+:   Print version.
+
+# AUTHORS
+
+John MacFarlane