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/Skribe.html | 104 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 104 insertions(+) create mode 100644 website/manual/Skribe.html (limited to 'website/manual/Skribe.html') diff --git a/website/manual/Skribe.html b/website/manual/Skribe.html new file mode 100644 index 0000000..f0cad2b --- /dev/null +++ b/website/manual/Skribe.html @@ -0,0 +1,104 @@ + + + + + +Haunt Reference Manual: Skribe + + + + + + + + + + + + + + + + + + + + +
+

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

+
+
+ +

5.3.3 Skribe

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

A reader for posts written in Skribe, a markup language with the full power +of Scheme. Skribe posts are created with the post expression with +metadata encoded as :key expression pairs at the beginning of the +post expression. After the metadata section, the rest of the post +expression is encoded as HTML. +

+

Example: +

+
+
(post
+ :title "Hello, Skribe!"
+ :date (make-date* 2016 08 20 12 00)
+ :tags '("skribe" "foo" "baz")
+
+ (h2 [This is a Skribe post])
+
+ (p [Skribe is a ,(em [really]) cool document authoring format
+     that provides all the power of Scheme whilst giving the user
+     a means to write literal text without stuffing it into a
+     string literal. If this sort of thing suits you, be sure to
+     check out ,(anchor "Skribilo"
+                        "http://www.nongnu.org/skribilo/"), too.]))
+
+ +
+ + + + + + -- cgit v1.2.3