From 2faff242ffd4faf7c8c53e4a9317d5d9c930ad09 Mon Sep 17 00:00:00 2001 From: David Thompson Date: Sun, 12 Nov 2023 12:45:23 -0500 Subject: Remove obsolete website. The official Haunt page is hosted on my blog now. --- website/manual/Skribe.html | 104 --------------------------------------------- 1 file changed, 104 deletions(-) delete mode 100644 website/manual/Skribe.html (limited to 'website/manual/Skribe.html') diff --git a/website/manual/Skribe.html b/website/manual/Skribe.html deleted file mode 100644 index f0cad2b..0000000 --- a/website/manual/Skribe.html +++ /dev/null @@ -1,104 +0,0 @@ - - - - - -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