blob: 4d52715630f203cb7b921e33a150ecabd3f697d8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
discard """
file: "txmlgen.nim"
output: "<h1><a href=\"http://force7.de/nimrod\">Nimrod</a></h1>"
"""
import xmlgen
var nim = "Nimrod"
echo h1(a(href="http://force7.de/nimrod", nim))
|