XWikiSyntaxDefinitionLists

Warning
For security reasons, the document is displayed in restricted mode as it is not the current version. There may be differences and errors due to this.

Editing

Definition Lists

1.0 Definition Lists

FeatureXWiki Syntax 1.0Result
Standard definition
<dl>
  <dt>term</dt>
  <dd>definition</dd>
</dl>
term
definition
Nested definitions
<dl>
  <dt>term 1</dt>
  <dd>definition 1
    <dl>
      <dt>term 2</dt>
      <dd>definition 2</dd>
    </dl>
  </dd>
</dl>
term 1
definition 1
term 2
definition 2
Parametrized definition
<dl style="color:blue">
  <dt>term</dt>
  <dd>definition</dd>
</dl>
term
definition

2.0 Definition Lists

FeatureXWiki Syntax Failed to execute the [velocity] macro. Cause: [The execution of the [velocity] script macro is not allowed in [cqm8:XWiki.XWikiSyntaxDefinitionLists]. Check the rights of its last author or the parameters if it's rendered from another script.]. Click on this message for details.
Result
Standard definition
; term
: definition
term
definition
Nested definitions
; term 1
: definition 1
:; term 2
:: definition 2
term 1
definition 1
term 2
definition 2
Parametrized definition
(% style="color:blue" %)
; term
: definition
term
definition