blob: 90c4f6f3f27b8f2a92cc819b43872641b03ac085 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
lang HTML
HEADER := $HTML"<!DOCTYPE HTML>"
convert(t:Text->HTML)
t = t.translate({
"&": "&",
"<": "<",
">": ">",
'"': """,
"'": "'",
})
return HTML.from_text(t)
convert(i:Int->HTML)
return HTML.from_text("$i")
func paragraph(content:HTML->HTML)
return $HTML"<p>$content</p>"
struct Bold(text:Text)
convert(b:Bold -> HTML)
return $HTML"<b>$(b.text)</b>"
func main()
assert HTML.HEADER == $HTML"<!DOCTYPE HTML>"
assert HTML.HEADER[1] == $HTML"<"
assert HTML.HEADER.text == "<!DOCTYPE HTML>"
>> user := "I <3 hax"
html := $HTML"Hello $user!"
assert html == $HTML"Hello I <3 hax!"
assert html ++ $HTML"<br>" == $HTML"Hello I <3 hax!<br>"
assert $HTML"$(1 + 2)" == $HTML"3"
assert $HTML"$(Int8(3))" == $HTML"3"
assert html.paragraph() == $HTML"<p>Hello I <3 hax!</p>"
assert Text(html) == '\$HTML"Hello I <3 hax!"'
>> b := Bold("Some <text> with junk")
assert $HTML"Your text: $b" == $HTML"Your text: <b>Some <text> with junk</b>"
|