forked from commonmark/commonmark-spec
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Keep cmark.1 in repository, so pandoc isn't required to build.
See commonmark#224.
- Loading branch information
Showing
3 changed files
with
52 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
.TH "cmark" "1" "October 22, 2014" "cmark manual" "" | ||
.SH NAME | ||
.PP | ||
cmark \- convert CommonMark formatted text to HTML | ||
.SH SYNOPSIS | ||
.PP | ||
cmark [\f[I]options\f[]] [file*] | ||
.SH DESCRIPTION | ||
.PP | ||
\f[C]cmark\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 CommonMark spec. | ||
If multiple files are specified, the contents of the files are simply | ||
concatenated before parsing. | ||
.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 |