Skip to content

Instantly share code, notes, and snippets.

@PuercoPop
Created September 11, 2013 07:51
Show Gist options
  • Save PuercoPop/6520492 to your computer and use it in GitHub Desktop.
Save PuercoPop/6520492 to your computer and use it in GitHub Desktop.
(in-package :puerco-widgets)
(defun headline (level text)
(markup
(:div :class "org-headline" :data-level level
(concatenate 'string
(loop for i from 0 to 2
collect #\*)
" " text))))
;;PUERCO-WIDGETS> (headline 1 "hai")
;; "<div class=\"org-headline\" data-level=\"1\">*** hai</div>"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment