Ok - i did get what i wanted ;-) , i tested your proposal with another example but was accustomed to the JSPWiki list syntax: *first line <space>still first line *second line <space>still second line If i put this whole list into the macro the second '*' is not at the start of the line. This (and a typo typed by myself) made me think that your first answer would not work for me. But putting each list item into a separate macro works well and is sufficient for me: === works === * {{velocity filter="html"}} [[**Platform** (Features]>>http://platform.xwiki.org/xwiki/bin/view/Main/]] - [[Component Module>>http://extensions.xwiki.org/xwiki/bin/view/Extension/Component+Module]] {{/velocity}} * {{velocity filter="html"}} [[Writing XWiki components>>http://platform.xwiki.org/xwiki/bin/view/DevGuide/WritingComponents]] - [[GitHub>>https://github.com/xwiki]] {{/velocity}} === does not work (somewhat cleaner) === {{velocity filter="html"}} * [[Platform (Features]>>http://platform.xwiki.org/xwiki/bin/view/Main/]] - [[Component Module>>http://extensions.xwiki.org/xwiki/bin/view/Extension/Component+Module]] * [[Writing XWiki components>>http://platform.xwiki.org/xwiki/bin/view/DevGuide/WritingComponents]] - [[GitHub>>https://github.com/xwiki]] {{/velocity}} Thank you again Frank
Yes it's possible ;)
As I said in my answer this is already possible. Try this in your wiki:
{{velocity filter="html"}} [[Platform (Features]>>http://platform.xwiki.org/xwiki/bin/view/Main/]] - [[Component Module>>http://extensions.xwiki.org/xwiki/bin/view/Extension/Component+Module]] - [[Writing XWiki components>>http://platform.xwiki.org/xwiki/bin/view/DevGuide/WritingComponents]] - [[GitHub>>https://github.com/xwiki]] - [[User's Guide>>http://enterprise.xwiki.org/xwiki/bin/view/UserGuide/]] - [[Getting started>>http://enterprise.xwiki.org/xwiki/bin/view/GettingStarted/]] - [[Syntax>>http://platform.xwiki.org/xwiki/bin/view/Main/XWikiSyntax]] - [[Administrator's Guide>>http://platform.xwiki.org/xwiki/bin/view/AdminGuide/]] - [[Developer's Guide>>http://platform.xwiki.org/xwiki/bin/view/DevGuide/]] - [[Development Zone>>http://dev.xwiki.org/xwiki/bin/view/Main/]] - [[Platform Features>>http://platform.xwiki.org/xwiki/bin/view/Features/]] - [[Extensions>>http://extensions.xwiki.org/xwiki/bin/view/Main/WebHome]] - [[FAQ>>http://www.xwiki.org/xwiki/bin/view/FAQ/]] {{/velocity}}
Thanks -Vincent