summary refs log tree commit diff stats
path: root/tests/showoff/thtml1.nim
blob: c7a083c21c1b8d9ca92dfcb07798a6b3257990f7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
discard """
  output: "<br>"
"""

template htmlTag(tag: expr) {.immediate.} =
  proc tag(): string = "<" & astToStr(tag) & ">"

htmlTag(br)
htmlTag(html)

echo br()