- XWiki Labs
- XWiki Syntax Guide
XWiki Syntax Guide
XWiki Syntax 1.0 » Advanced
XWiki Syntax 1.0: Advanced
Verbatim
1.0 Verbatim
Allow to enter content that will not be formatted (in other words the XWiki Syntax will not be taken into account).
Feature | XWiki Syntax 1.0 | Result |
---|---|---|
Verbatim inline | Some verbatim {pre}*[not rendered]*{/pre} content | Some verbatim *[not rendered]* content |
Verbatim block |
{pre}
multi line
*verbatim*
content
{/pre}
| multi line *verbatim* content |
Quotations
1.0 Quotations
Allows to quote some text.
Feature | XWiki Syntax 1.0 | Result |
---|---|---|
Simple quote | <blockquote><p>john said this</p></blockquote> |
I said ok |
Nested quotes | <blockquote><p>john said this</p> |
I said ok |
Escapes
1.0 Escapes
Allows to escape XWiki Syntax.
Feature | XWiki Syntax 1.0 | Result |
---|---|---|
Escape a character | This is not a \[link\] | This is not a [link] |
Parameters
1.0 Parameters
In XWiki Syntax 1.0 there is no syntax for passing parameters and the only way to do it was to write XHTML directly in the content as shown in the table below.
XWiki Syntax 1.0 | Generated XHTML |
---|---|
<h1 class="myClass" style="myStyle" id="myId">heading</h1> | <h1 class="myClass" style="myStyle" id="myId">heading</h1> |