# HG changeset patch # User Josef 'Jeff' Sipek # Date 1598014604 14400 # Node ID 903f81f09f6de79b8d48795d70716199f8f22b9e # Parent 6522cd6eba250217eb033746d69f0ff6af04a8e5 docs: correctly describe the format of lisp metadata The leading quote requirement was removed from libjeffpc in 2016. Signed-off-by: Josef 'Jeff' Sipek diff -r 6522cd6eba25 -r 903f81f09f6d docs/lisp-metadata.txt --- 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.