bgarrels / zipscript

Automatically exported from code.google.com/p/zipscript
0 stars 0 forks source link

Add identifier for template defined parameters in macro definition #1

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Ex:
[#macro foo normalParam tld1[]]
or
[#macro foo normalParam tld[param1=foo param2="someDefault"]]

Original issue reported on code.google.com by joe...@gmail.com on 30 Jun 2008 at 6:22

GoogleCodeExporter commented 9 years ago
completed.

can be nested as well:
[#macro foo normalParam1 aaa[normalParam2 bbb[normalParam3]]]
   ...
[/#macro]
could be used as follows:
[@foo normalParam1="abc"]
   [@aaa normalParam2="def"]
      [@bbb normalParam3="ghi"]
          ...
      [/@bbb]
   [/@aaa]
[/@foo]

Original comment by joe...@gmail.com on 1 Jul 2008 at 2:23

GoogleCodeExporter commented 9 years ago

Original comment by joe...@gmail.com on 1 Jul 2008 at 1:25

GoogleCodeExporter commented 9 years ago

Original comment by joe...@gmail.com on 1 Jul 2008 at 6:39