summaryrefslogtreecommitdiffstats
path: root/libraries/cmark/README
diff options
context:
space:
mode:
author Skaendo2018-01-17 01:58:48 +0100
committer Willy Sudiarto Raharjo2018-01-17 13:46:24 +0100
commit5da80451962db1ee071c30404728e940ade15594 (patch)
treea46cfd2779ff7935a8fff97ad0e36568ab5fc8a8 /libraries/cmark/README
parent6e0610cd073eecda8fd983bf3c4209f194ee3de6 (diff)
downloadslackbuilds-5da80451962db1ee071c30404728e940ade15594.tar.gz
libraries/cmark: Added (C Reference libraries).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'libraries/cmark/README')
-rw-r--r--libraries/cmark/README10
1 files changed, 10 insertions, 0 deletions
diff --git a/libraries/cmark/README b/libraries/cmark/README
new file mode 100644
index 0000000000..1740df5692
--- /dev/null
+++ b/libraries/cmark/README
@@ -0,0 +1,10 @@
+cmark is the C reference implementation of CommonMark, a rationalized
+version of Markdown syntax with a spec. (For the JavaScript reference
+implementation, see commonmark.js.)
+
+It provides a shared library (libcmark) with functions for parsing
+CommonMark documents to an abstract syntax tree (AST), manipulating
+the AST, and rendering the document to HTML, groff man, LaTeX,
+CommonMark, or an XML representation of the AST. It also provides a
+command-line program (cmark) for parsing and rendering CommonMark
+documents.