Wiki source code of XWikiSyntaxQuotations

Last modified by superadmin on 2025/05/22 17:44

Hide last authors
superadmin 1.1 1 = Advanced =
2
3 == Quotations ==
4
5 === 1.0 Quotations ===
6
7 Allows to quote some text.
8
9 |=Feature|=XWiki Syntax 1.0|=Result
10 |Simple quote|(((
11 <blockquote><p>john said this</p></blockquote>
12 I said ok
13 )))|(((
14 > john said this
15 I said ok
16 )))
17 |Nested quotes|(((
18 <blockquote><p>john said this</p>
19 <blockquote><p>marie answered that</p></blockquote>
20 </blockquote>
21 I said ok
22 )))|(((
23 > john said this
24 >> marie answered that
25 I said ok
26 )))
27
28 === 2.0 Quotations ===
29
30 Allows to quote some text.
31
32 |=Feature|=XWiki Syntax {{velocity}}$crtSyntaxVer{{/velocity}}|=Result
33 |Simple quote|((({{{
34 > john said this
35 I said ok
36 }}})))|(((
37 > john said this
38 I said ok
39 )))
40 |Nested quotes|((({{{
41 > john said this
42 >> marie answered that
43 I said ok
44 }}})))|(((
45 > john said this
46 >> marie answered that
47 I said ok
48 )))