Created
September 11, 2020 00:54
-
-
Save jthodge/5a2d88c221415cddcaabc547db147939 to your computer and use it in GitHub Desktop.
ask professor markup
This file contains 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
(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