Created
August 10, 2012 10:30
-
-
Save ignacy/3313259 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| (html '("html" | |
| ("head" | |
| ("body" | |
| ("div" | |
| ("h1" "Hello world") | |
| ("div" "I don't" ("b" " like ") "plain html page look") | |
| ("br") | |
| ("div" ("attributes" "class=span9 style=\"color:red\"") | |
| "This is a webpage served by elnode!")))))) | |
| ;; <html><head><body><div><h1>Hello world</h1> | |
| ;; <div>I don't<b> like </b>plain html page look</div> | |
| ;; <br></br><div class=span9 style="color:red">This is a webpage served by elnode!</div> | |
| ;; </div></body></head></html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment