Created
April 4, 2013 15:24
-
-
Save joekarma/5311346 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CL-USER> (setf yaclml::*yaclml-indent* t) | |
T | |
CL-USER> (<:html (<:head (<:title "Hello, world"))) | |
<html | |
><head | |
><title | |
>Hello, world</title | |
></head | |
></html | |
> | |
; No value | |
CL-USER> (let ((yaclml::*yaclml-indent* nil)) | |
(<:html (<:head (<:title "Hello, world")))) | |
<html | |
><head | |
><title | |
>Hello, world</title | |
></head | |
></html | |
> | |
; No value | |
CL-USER> (setf yaclml::*yaclml-indent* nil) | |
NIL | |
CL-USER> (<:html (<:head (<:title "Hello, world"))) | |
<html><head><title>Hello, world</title></head></html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment