Unpublish lisp syntaxes post.
authorOlof-Joachim Frahm <olof@macrolet.net>
Thu, 27 Nov 2014 21:33:57 +0000 (22:33 +0100)
committerOlof-Joachim Frahm <olof@macrolet.net>
Thu, 27 Nov 2014 21:33:57 +0000 (22:33 +0100)
lisp-syntaxes.post [deleted file]
lisp-syntaxes.post.unpublished [new file with mode: 0644]

diff --git a/lisp-syntaxes.post b/lisp-syntaxes.post
deleted file mode 100644 (file)
index df1fd80..0000000
+++ /dev/null
@@ -1,30 +0,0 @@
-;;;;;
-title: Lisp syntaxes
-tags: lisp
-date: 2014-08-28 23:41:03
-format: md
-;;;;;
-
-Apart from the standard reader syntax, some libraries provide syntax for a DSL
-of their own or to easily create objects.
-
-# Strings
-
-`#"foo"#` to allow strings with unescaped quotation marks included.
-
-The following is similar to shell here documents and Perl syntax:
-
-    #>END
-    This is a text ended byEND
-
-The resulting string will be `"This is a text ended by"`.
-
-# Regular expressions
-
-`#R""` is the DSL used by `CL-PPCRE` to construct regular expressions.
-
-# SQL
-
-`(query [select 'item :where [= [slot-value 'item 'id] 23]])` is the DSL for
-`CL-SQL`.  The resulting expressions are later converted to regular SQL
-statements.
diff --git a/lisp-syntaxes.post.unpublished b/lisp-syntaxes.post.unpublished
new file mode 100644 (file)
index 0000000..df1fd80
--- /dev/null
@@ -0,0 +1,30 @@
+;;;;;
+title: Lisp syntaxes
+tags: lisp
+date: 2014-08-28 23:41:03
+format: md
+;;;;;
+
+Apart from the standard reader syntax, some libraries provide syntax for a DSL
+of their own or to easily create objects.
+
+# Strings
+
+`#"foo"#` to allow strings with unescaped quotation marks included.
+
+The following is similar to shell here documents and Perl syntax:
+
+    #>END
+    This is a text ended byEND
+
+The resulting string will be `"This is a text ended by"`.
+
+# Regular expressions
+
+`#R""` is the DSL used by `CL-PPCRE` to construct regular expressions.
+
+# SQL
+
+`(query [select 'item :where [= [slot-value 'item 'id] 23]])` is the DSL for
+`CL-SQL`.  The resulting expressions are later converted to regular SQL
+statements.