Interface RenderingConfiguration
@Role
public interface RenderingConfiguration
Configuration properties for the Rendering module.
You can override the default values for each of the configuration properties below by defining them in XWiki's
global configuration file using a prefix of "rendering" followed by the property name. For example:
rendering.linkLabelFormat = %s.%p
- Since:
- 1.6M1
- Version:
- $Id: 3eec6b25799ba4e0ae8ee0d62149eba23972dafb $
-
Method Summary
Modifier and TypeMethodDescriptionA link label format is the format used to decide how to display links that have no label.
-
Method Details
-
getLinkLabelFormat
String getLinkLabelFormat()A link label format is the format used to decide how to display links that have no label. By default the page name is displayed. However it's possible to customize it using the following tokens:- %w: wiki name
- %s: space name
- %p: page name
- %P: page name with spaces between camel case words, i.e. "My Page" if the page name is "MyPage"
- %t: page title
- Returns:
- the format to use to display link labels when the user hasn't specified a label
-
getInterWikiDefinitions
Properties getInterWikiDefinitions()- Returns:
- the list of InterWiki definitions. Each InterWiki definition is made of an alias and a base URL.
- See Also:
-
getTransformationNames
- Returns:
- the names of transformations to execute when rendering document content, ordered by transformation priority (highest priority first)
- Since:
- 3.3M1
-