From 9e4fba766d070a2dd72b7180c1a040d4621218b8 Mon Sep 17 00:00:00 2001 From: David Thompson Date: Mon, 23 Jan 2017 20:40:04 -0500 Subject: website: Update manual. --- website/manual/CommonMark.html | 100 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 100 insertions(+) create mode 100644 website/manual/CommonMark.html (limited to 'website/manual/CommonMark.html') diff --git a/website/manual/CommonMark.html b/website/manual/CommonMark.html new file mode 100644 index 0000000..6eda562 --- /dev/null +++ b/website/manual/CommonMark.html @@ -0,0 +1,100 @@ + + + + + +Haunt Reference Manual: CommonMark + + + + + + + + + + + + + + + + + + + + +
+

+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