From 50dc7bb79af62b819648c67c5ccd33b3470e626c Mon Sep 17 00:00:00 2001 From: David Thompson Date: Sat, 10 Mar 2018 21:41:36 -0500 Subject: Add Haunt manual. --- manuals/haunt/CommonMark.html | 100 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 100 insertions(+) create mode 100644 manuals/haunt/CommonMark.html (limited to 'manuals/haunt/CommonMark.html') diff --git a/manuals/haunt/CommonMark.html b/manuals/haunt/CommonMark.html new file mode 100644 index 0000000..2fa9ba6 --- /dev/null +++ b/manuals/haunt/CommonMark.html @@ -0,0 +1,100 @@ + + + + + + +CommonMark (Haunt Reference Manual) + + + + + + + + + + + + + + + + + + + +
+

+Previous: , Up: Readers   [Contents][Index]

+
+
+ +

5.3.4 CommonMark

+
+
(use-modules (haunt reader commonmark))
+
+ +
+
Scheme Procedure: commonmark-reader
+

A reader for posts written in CommonMark, a fully specified variant of +Markdown. Metadata is encoded as key: value pairs, one per line, +at the beginning of the file. A line with the --- sentinel marks +the end of the metadata section and the rest of the file is encoded as HTML. +

+

Example: +

+
+
title: Hello, CommonMark!
+date: 2016-08-20 12:00
+tags: markdown, commonmark
+---
+
+## This is a CommonMark post
+
+CommonMark is a **strongly** defined, *highly* compatible
+specification of Markdown, learn more about CommomMark
+[here](http://commonmark.org/).
+
+ +
+ + + + + + -- cgit v1.2.3