Skip to content

Instantly share code, notes, and snippets.

@jthodge
Created September 11, 2020 00:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jthodge/5a2d88c221415cddcaabc547db147939 to your computer and use it in GitHub Desktop.
Save jthodge/5a2d88c221415cddcaabc547db147939 to your computer and use it in GitHub Desktop.
ask professor markup
(define (ask-professor . elements)
`(div ((id "askme"))
(h4 "Ask Professor Markup")
(div ((class "inner"))
(blockquote
,@elements
)
)
))
(define (question . elements)
`(p ,@elements))
(define (answer . elements)
`(p ,@elements))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment