aboutsummaryrefslogtreecommitdiff
path: root/man/man1
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2015-01-24 21:35:03 -0800
committerJohn MacFarlane <jgm@berkeley.edu>2015-01-24 21:39:07 -0800
commit829b089c80895d9a78938c5bc7747aea1cd48eb6 (patch)
tree53bd534741a90c547c5d87039efa5ee625da8081 /man/man1
parent5ef31853d5161d4b5a2dfc0df94e6eaaeb3215d0 (diff)
Removed implementation-specific material from repository.
The C and JS implementations are being split off into different repositories. This repository will just have the spec itself.
Diffstat (limited to 'man/man1')
-rw-r--r--man/man1/cmark.141
1 files changed, 0 insertions, 41 deletions
diff --git a/man/man1/cmark.1 b/man/man1/cmark.1
deleted file mode 100644
index c425b8c..0000000
--- a/man/man1/cmark.1
+++ /dev/null
@@ -1,41 +0,0 @@
-.TH "cmark" "1" "November 30, 2014" "LOCAL" "General Commands Manual"
-.SH "NAME"
-\fBcmark\fR
-\- convert CommonMark formatted text to HTML
-.SH "SYNOPSIS"
-.HP 6n
-\fBcmark\fR
-[\fB\-\-ast\fR]
-file*
-.SH "DESCRIPTION"
-\fBcmark\fR
-acts as a pipe, reading from
-\fRstdin\fR
-or from the specified files and writing to
-\fRstdout\fR.
-It converts Markdown formatted plain text to HTML (or groff man or
-an abstract representation of the AST), using the conventions
-described in the CommonMark spec.
-If multiple files are specified, the contents of the files are simply
-concatenated before parsing.
-.SH "OPTIONS"
-.TP 12n
-\-\-to, \-t \f[I]FORMAT\f[]
-Specify output format (\f[C]html\f[], \f[C]man\f[], \f[C]ast\f[]).
-.TP 12n
-\-\-sourcepos
-Include source position attribute.
-.TP 12n
-\-\-hardbreaks
-Treat newlines as hard line breaks.
-.TP 12n
-\-\-normalize
-Consolidate adjacent text nodes.
-.TP 12n
-\-\-help
-Print usage information.
-.TP 12n
-\-\-version
-Print version.
-.SH "AUTHORS"
-John MacFarlane