changeset 1050:903f81f09f6d

docs: correctly describe the format of lisp metadata The leading quote requirement was removed from libjeffpc in 2016. Signed-off-by: Josef 'Jeff' Sipek <jeffpc@josefsipek.net>
author Josef 'Jeff' Sipek <jeffpc@josefsipek.net>
date Fri, 21 Aug 2020 08:56:44 -0400
parents 6522cd6eba25
children 9ec759a83693
files docs/lisp-metadata.txt
diffstat 1 files changed, 14 insertions(+), 14 deletions(-) [+]
line wrap: on
line diff
--- a/docs/lisp-metadata.txt	Fri Aug 21 08:50:38 2020 -0400
+++ b/docs/lisp-metadata.txt	Fri Aug 21 08:56:44 2020 -0400
@@ -9,14 +9,14 @@
 ----
 
 Posts' metadata is stored alongside the post text in a file called
-"post.lisp".  The contents are a quoted Lisp alist.  For example:
+"post.lisp".  The contents are a Lisp alist.  For example:
 
-'((time . "2015-09-19 21:28")
-  (title . "abcdef")
-  (fmt . 3)
-  (tags "tag1" "tag2")
-  (comments 1 2 3)
-  (listed #t))
+((time . "2015-09-19 21:28")
+ (title . "abcdef")
+ (fmt . 3)
+ (tags "tag1" "tag2")
+ (comments 1 2 3)
+ (listed #t))
 
 
 Most entries are self explanatory.  With that said,
@@ -38,14 +38,14 @@
 -------
 
 Comments store their metadata alongside the comment text in a file called
-"meta.lisp".  The contents are a quoted Lisp alist.  For example:
+"meta.lisp".  The contents are a Lisp alist.  For example:
 
-'((author . "bob")
-  (email . "bob@example.com")
-  (time . "2015-09-19 21:30")
-  (ip . "10.10.10.10")
-  (url . "http://example.com")
-  (moderated . #t))
+((author . "bob")
+ (email . "bob@example.com")
+ (time . "2015-09-19 21:30")
+ (ip . "10.10.10.10")
+ (url . "http://example.com")
+ (moderated . #t))
 
 
 Again, the entries are self explanatory.