Changes for page Configuration
Last modified by Vincent Massol on 2024/10/25
To version 125.8
edited by Vincent Massol
on 2011/11/14
on 2011/11/14
Change comment:
Document the transformation configuration
Summary
-
Page properties (1 modified, 0 added, 0 removed)
Details
- Page properties
-
- Content
-
... ... @@ -443,6 +443,26 @@ 443 443 444 444 Note: inactive users are always allowed to see the //XWiki.AccountValidation// page in order to validate their account. 445 445 446 += Rendering Transformations = 447 + 448 +You can control which [[Transformations>>rendering:Main.Architecture]] are active (by default the [[Macro and Icon ones>>rendering:Main.Transformations]] are active by default) by editing ##xwiki.properties##: 449 + 450 +{{code language="none"}} 451 +#-# [Since 2.6RC1] 452 +#-# Controls what transformations will be executed when rendering content. 453 +#-# A transformation modifies the parsed content. For example the Icon transformation replaces some characters with 454 +#-# icons, a WikiWord transformation will automatically create links when it finds wiki words, etc. 455 +#-# Note that the Macro transformation is a special transformation that replaces macro markers by the result of the 456 +#-# macro execution. If you don't list it, macros won't get executed. 457 +#-# The default value is: rendering.transformations = macro, icon 458 +{{/code}} 459 + 460 +For example if you wish to turn off the Icon Transformation to not render emoticons, you'd define the following property: 461 + 462 +{{code language="none"}} 463 +rendering.transformations = macro 464 +{{/code}} 465 + 446 446 = Sample xwiki.cfg = 447 447 448 448 {{code language="none"}}