|
|
|
|
|
by shakna
3211 days ago
|
|
SXML has been around a while, and makes working with HTML in most Lisps a breeze. See this for example [0]. '((html (head (title "My Title"))
(body (@ (bgcolor "white"))
(h1 "My Heading")
(p "This is a paragraph.")
(p "This is another paragraph."))))
[0] http://www.neilvandyke.org/racket/html-writing/ |
|