RandomSec/extensions/sample/module/macros.vm
Tom Morris a683f0cdc1 Drop -extension suffix
git-svn-id: http://google-refine.googlecode.com/svn/trunk@1542 7d457c2a-affb-35e4-300a-418c747d4874
2010-10-14 20:36:29 +00:00

14 lines
290 B
Plaintext

#*
This file contains common velocity macros used in all .vt files.
For Velocity documentation, see:
http://velocity.apache.org/engine/releases/velocity-1.5/user-guide.html
*#
#macro( makeAList $list )
<ul>
#foreach($item in $list)
<li>$item</li>
#end
</ul>
#end