Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
README.md | 2023-05-13 | 494 Bytes | |
v0.15.1 source code.tar.gz | 2023-05-13 | 275.7 kB | |
v0.15.1 source code.zip | 2023-05-13 | 287.8 kB | |
v0.15.1.tar.gz | 2023-05-13 | 275.7 kB | |
v0.15.1.zip | 2023-05-13 | 287.8 kB | |
Totals: 5 Items | 1.1 MB | 0 |
Changelog
- variables in
SSG
routes:nim serve(...): var counter = 0 get "/": "counter = {counter}" post "/": inc counter "success"
- improve cycle scopes in
buildHtml
macro:nim for i in 0..10: tButton: "click me" @click: echo i
- fix attributes in
buildHtml
macro:nim tButton(myAttr="val"): myAttr1 = "other val" @click: echo "click is onclick attr"