RandomSec/extensions/sample-extension/module/macros.vm
David Huynh 7ba97c61ad More work on the sample extension
git-svn-id: http://google-refine.googlecode.com/svn/trunk@974 7d457c2a-affb-35e4-300a-418c747d4874
2010-06-15 23:21:08 +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