Wiki source code of Velocity Code Style
Last modified by Vincent Massol on 2021/06/15 14:44
Show last authors
author | version | line-number | content |
---|---|---|---|
1 | Velocity scripts must follow these rules: | ||
2 | * Use 2 spaces for indentation | ||
3 | * Use single quotes for strings that don't need to be parsed/interpreted. This improves performances. | ||
4 | * Always capture the result of a method call in a variable to avoid side effects (things output to the result: what the method returns or unwanted empty lines). For example:((( | ||
5 | {{code language=="velocity"}} | ||
6 | #set ($discard = $someVar.someMethod()) | ||
7 | {{/code}} | ||
8 | ))) |