I like this method a lot, but the default indentation of Emacs/Slime bothers me:(:h1 :class "foo" "Hello") => <h1 class="foo">Hello</h1>
Code: Select all
(:h1 :class "foo"
"Hello")
Code: Select all
(:h1 :class "foo"
"Hello")
I like this method a lot, but the default indentation of Emacs/Slime bothers me:(:h1 :class "foo" "Hello") => <h1 class="foo">Hello</h1>
Code: Select all
(:h1 :class "foo"
"Hello")
Code: Select all
(:h1 :class "foo"
"Hello")
Code: Select all
(:div :class "whatever"
"Text here")
Code: Select all
<div class="whatever">
Text here
</div>
Code: Select all
(:div :class "foo"
(:div :class "bar"
(:div :class "zot"
...)))
Code: Select all
(:div :class "foo"
(:div
(:div :class "bar"
(:a :href "zot.html"
(:img :src "zot.jpg)))
Code: Select all
(:div :class "foo"
(:div
(:div :class "bar"
(:a :href "zot.html"
(:img :src "zot.jpg)))
Code: Select all
(put :div 'common-lisp-indent-function '(:div (&body)))