On Sun, Jul 28, 2019 at 9:17 PM Boyka Zhu <
boyk...@gmail.com> wrote:
> I have one request that is need to add parentheses into the Jelly label like:
> <f:section title="${%TestPlugin(branch-A)}">
> </f:section>
Parentheses are interpreted as format parameters. To fix this, simply
put in `basename.jelly`:
<f:section title="${%your-key}">
and create `basename.properties`:
your-key=TestPlugin(branch-A)