cmark

My personal build of CMark ✏️

Commit
d0571571f1f20343622214e6e919e509c43a93b9
Parent
75be85f77f02c8185e8fff607bf3ccf3c8fe3a11
Author
John MacFarlane <jgm@berkeley.edu>
Date

Removed markdown intermediary for man 1 page.

See #224.

Diffstat

2 files changed, 0 insertions, 40 deletions

Status File Name N° Changes Insertions Deletions
Modified Makefile 3 0 3
Deleted man/cmark.1.md 37 0 37
diff --git a/Makefile b/Makefile
@@ -71,9 +71,6 @@ clean:
 
 $(PROG): all
 
-man/man1/cmark.1: man/cmark.1.md
-	mkdir -p man/man1 && pandoc -t man -s $< -o $@
-
 man/man3/cmark.3: src/cmark.h
 	python man/make_man_page.py $< > $@
 
diff --git a/man/cmark.1.md b/man/cmark.1.md
@@ -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