tml/assets/test.sex

41 lines
646 B
Plaintext

(
(h1 "Hello world!")
(p "Text goes here.")
(h2 "Heading 2")
(p "Text
spread
across
multiple
lines.")
(h3 "Heading 3")
(p
"Some text can be "
(italic "italicized")
" and some text can be "
(bold "emboldened") ". "
"Other text can be "
(underline "underlined") ". "
"If you want to write text "
"but pretend that you didn't, "
"you can "
(strikethrough "strike it out") ".")
(p
"You can even do "
(strikethrough (bold (italic (underline "EVERYTHING AT ONCE"))))
".")
(ul "Unordered list entry")
(ul "Unordered list entry")
(ul "Unordered list entry")
(ol "List entry 1")
(ol "List entry 2")
(ol "List entry 3")
)