Wiki source code of XWikiSyntaxDefinitionLists
Last modified by superadmin on 2025/05/22 17:44
Show last authors
| author | version | line-number | content |
|---|---|---|---|
| 1 | = Editing = | ||
| 2 | |||
| 3 | == Definition Lists == | ||
| 4 | |||
| 5 | === 1.0 Definition Lists === | ||
| 6 | |||
| 7 | |=Feature|=XWiki Syntax 1.0|=Result | ||
| 8 | |Standard definition|((({{{ | ||
| 9 | <dl> | ||
| 10 | <dt>term</dt> | ||
| 11 | <dd>definition</dd> | ||
| 12 | </dl> | ||
| 13 | }}})))|((( | ||
| 14 | ; term | ||
| 15 | : definition | ||
| 16 | ))) | ||
| 17 | |Nested definitions|((({{{ | ||
| 18 | <dl> | ||
| 19 | <dt>term 1</dt> | ||
| 20 | <dd>definition 1 | ||
| 21 | <dl> | ||
| 22 | <dt>term 2</dt> | ||
| 23 | <dd>definition 2</dd> | ||
| 24 | </dl> | ||
| 25 | </dd> | ||
| 26 | </dl> | ||
| 27 | }}})))|((( | ||
| 28 | ; term 1 | ||
| 29 | : definition 1 | ||
| 30 | :; term 2 | ||
| 31 | :: definition 2 | ||
| 32 | ))) | ||
| 33 | |Parametrized definition|((({{{ | ||
| 34 | <dl style="color:blue"> | ||
| 35 | <dt>term</dt> | ||
| 36 | <dd>definition</dd> | ||
| 37 | </dl> | ||
| 38 | }}})))|((( | ||
| 39 | (% style="color:blue" %) | ||
| 40 | ; term | ||
| 41 | : definition | ||
| 42 | ))) | ||
| 43 | |||
| 44 | === 2.0 Definition Lists === | ||
| 45 | |||
| 46 | |=Feature|=XWiki Syntax {{velocity}}$crtSyntaxVer{{/velocity}}|=Result | ||
| 47 | |Standard definition|((({{{ | ||
| 48 | ; term | ||
| 49 | : definition | ||
| 50 | }}})))|((( | ||
| 51 | ; term | ||
| 52 | : definition | ||
| 53 | ))) | ||
| 54 | |Nested definitions|((({{{ | ||
| 55 | ; term 1 | ||
| 56 | : definition 1 | ||
| 57 | :; term 2 | ||
| 58 | :: definition 2 | ||
| 59 | }}})))|((( | ||
| 60 | ; term 1 | ||
| 61 | : definition 1 | ||
| 62 | :; term 2 | ||
| 63 | :: definition 2 | ||
| 64 | ))) | ||
| 65 | |Parametrized definition|((({{{ | ||
| 66 | (% style="color:blue" %) | ||
| 67 | ; term | ||
| 68 | : definition | ||
| 69 | }}})))|((( | ||
| 70 | (% style="color:blue" %) | ||
| 71 | ; term | ||
| 72 | : definition | ||
| 73 | ))) |