Patrick Steele-Idem 68eb6717dc Fixes #544 - Usage of macro before it is defined not handled correctly
Register macro when the node is created instead of waiting until code generation
2017-01-21 09:39:49 -07:00

10 lines
125 B
Plaintext

<macro a(name)>
[a: Hello ${name}]
<b('bar')/>
</macro>
<macro b(name)>
[b: Hello ${name}]
</macro>
<a('foo')/>