config.lisp: Use standard Lisp-style comments
authorLucian Mogosanu <lucian@mogosanu.ro>
Tue, 2 Jul 2019 13:57:09 +0000 (16:57 +0300)
committerLucian Mogosanu <lucian@mogosanu.ro>
Tue, 2 Jul 2019 13:57:09 +0000 (16:57 +0300)
config.lisp.example

index 7b70ffa..1daf509 100644 (file)
@@ -1,12 +1,12 @@
-;; Tarpit Lisp Blog Scaffolding
-;;
-;; A static blog generator, config file
+;;;; Tarpit Lisp Blog Scaffolding
+;;;;
+;;;; A static blog generator, config file
 
-; The site installation's base directory
+;; The site installation's base directory
 (defvar *lbs-base* "/home/thetarpit/")
 
-; A list of paths where we look for Lisp dependencies, e.g. libraries
+;; A list of paths where we look for Lisp dependencies, e.g. libraries
 (defvar *lbs-path* nil)
 
-; Path to the directory where the static site will be spat
+;; Path to the directory where the static site will be spat
 (defvar *lbs-site* (concatenate 'string *lbs-base* "_site/"))