File: macros.vm

package info (click to toggle)
openrefine 3.9.5-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 44,436 kB
  • sloc: javascript: 106,758; java: 91,946; xml: 6,634; sh: 614; makefile: 78; python: 71; sql: 59
file content (14 lines) | stat: -rw-r--r-- 290 bytes parent folder | download | duplicates (17)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#*
  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