summary refs log tree commit diff stats
path: root/examples/talk/dsl.nim
blob: 2dde517903801a06b12947e98abacd7223a75310 (plain) (blame)
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
import strutils

template html(name, matter: untyped) =
  proc name(): string =
    result = "<html>"
    matter
    result.add("</html>")

template nestedTag(tag: untyped) =
  template tag(matter: typed) =
    result.add("<" & astToStr(tag) & ">")
    matter
    result.add("</" & astToStr(tag) & ">")

template simpleTag(tag: untyped) =
  template tag(matter: untyped) =
    result.add("<$1>$2</$1>" % [astToStr(tag), matter])

nestedTag body
nestedTag head
nestedTag ul
simpleTag title
simpleTag li

html mainPage:
  head:
    title "now look at this"
  body:
    ul:
      li "Nim is quite capable"

echo mainPage()