a683f0cdc1
git-svn-id: http://google-refine.googlecode.com/svn/trunk@1542 7d457c2a-affb-35e4-300a-418c747d4874
14 lines
290 B
Plaintext
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 |