Skip to content

Instantly share code, notes, and snippets.

@joekarma
Created April 4, 2013 15:24
Show Gist options
  • Save joekarma/5311346 to your computer and use it in GitHub Desktop.
Save joekarma/5311346 to your computer and use it in GitHub Desktop.
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