Changes for page Writing XWiki Rendering Macros in wiki pages
Last modified by Simon Urli on 2023/10/10
Change comment:
There is no comment for this version
Summary
-
Page properties (1 modified, 0 added, 0 removed)
Details
- Page properties
-
- Content
-
... ... @@ -148,9 +148,12 @@ 148 148 149 149 {code} 150 150 {{velocity output="no"}} 151 -#set($wikiresult = $xcontext.macro.content) ## get the macro content in a velocity string 152 -#set($wikiresult = "(% class='newstyle' %)((($wikiresult)))") ## Add a wrapping div as a sample of what the macro could do 153 -#set($xcontext.macro.result = $services.rendering.parse($wikiresult, $xwiki.getCurrentContentSyntaxId()).getChildren()) ## parse the string and return the resulting blocks 151 + ## get the macro content in a velocity string 152 +#set($wikiresult = $xcontext.macro.content) 153 +## Add a wrapping div as a sample of the action of this macro 154 +#set($wikiresult = "(% class='newstyle' %)((($wikiresult)))") 155 +## parse the string and return the resulting blocks 156 +#set($xcontext.macro.result = $services.rendering.parse($wikiresult, $xwiki.getCurrentContentSyntaxId()).getChildren()) 154 154 {{/velocity}} 155 155 {code} 156 156 1.1 Troubleshooting