tomo/test/lang.tm

38 lines
766 B
Tcl

lang HTML:
HEADER := $HTML"<!DOCTYPE HTML>"
func escape(t:Text)->HTML:
t = t:replace("&", "&amp;")
t = t:replace("<", "&lt;")
t = t:replace(">", "&gt;")
t = t:replace('"', "&quot;")
t = t:replace("'", "&#39;")
return HTML.from_unsafe_text(t)
func escape_int(i:Int)->HTML:
return HTML.from_unsafe_text("$i")
func paragraph(content:HTML)->HTML:
return $HTML"<p>$content</p>"
func main():
>> HTML.HEADER
= $HTML"<!DOCTYPE HTML>"
>> user := "I <3 hax"
>> html := $HTML"Hello $user!"
= $HTML"Hello I &lt;3 hax!"
>> html ++ $HTML"<br>"
= $HTML"Hello I &lt;3 hax!<br>"
>> $HTML"$(1 + 2)"
= $HTML"3"
>> $HTML"$(3_i8)"
= $HTML"3"
>> html:paragraph()
= $HTML"<p>Hello I &lt;3 hax!</p>"
>> Text(html)
= "$HTML\"Hello I &lt;3 hax!\""