Wiki source code of XWikiSyntaxLists
Last modified by superadmin on 2025/05/22 17:44
Show last authors
| author | version | line-number | content |
|---|---|---|---|
| 1 | = Editing = | ||
| 2 | |||
| 3 | == Lists == | ||
| 4 | |||
| 5 | === 1.0 Lists === | ||
| 6 | |||
| 7 | {{info}}Some of the mentioned styles do not work on all browsers. For a comprehensive list follow [[this link>>http://www.quirksmode.org/css/lists.html]].{{/info}} | ||
| 8 | |||
| 9 | |=Feature|=XWiki Syntax 1.0|=Result | ||
| 10 | |Bulleted list|((({{{ | ||
| 11 | * item 1 | ||
| 12 | ** item 2 | ||
| 13 | *** item 3 | ||
| 14 | * item 4 | ||
| 15 | }}})))|((( | ||
| 16 | * item 1 | ||
| 17 | ** item 2 | ||
| 18 | *** item 3 | ||
| 19 | * item 4 | ||
| 20 | ))) | ||
| 21 | |Numbered list|((({{{ | ||
| 22 | 1. item 1 | ||
| 23 | 11. item 2 | ||
| 24 | 111. item 3 | ||
| 25 | 1. item 4 | ||
| 26 | }}})))|((( | ||
| 27 | 1. item 1 | ||
| 28 | 11. item 2 | ||
| 29 | 111. item 3 | ||
| 30 | 1. item 4 | ||
| 31 | ))) | ||
| 32 | |Mixed list|((({{{ | ||
| 33 | 1. item 1 | ||
| 34 | 1*. item 2 | ||
| 35 | 1*. item 3 | ||
| 36 | 1. item 4 | ||
| 37 | }}})))|((( | ||
| 38 | 1. item 1 | ||
| 39 | 1*. item 2 | ||
| 40 | 1*. item 3 | ||
| 41 | 1. item 4 | ||
| 42 | ))) | ||
| 43 | |Square list|((({{{ | ||
| 44 | - item 1 | ||
| 45 | - item 2 | ||
| 46 | }}})))|((( | ||
| 47 | (% style="list-style-type: square" %) | ||
| 48 | * item 1 | ||
| 49 | * item 2 | ||
| 50 | ))) | ||
| 51 | |Disc list|((( | ||
| 52 | <ul style="list-style-type: disc"> | ||
| 53 | <li>item 1</li> | ||
| 54 | <li>item 2</li> | ||
| 55 | </ul> | ||
| 56 | )))|((( | ||
| 57 | (% style="list-style-type: disc" %) | ||
| 58 | * item 1 | ||
| 59 | * item 2 | ||
| 60 | ))) | ||
| 61 | |Lowercase Alphabetical list|((({{{ | ||
| 62 | a. item 1 | ||
| 63 | a. item 2 | ||
| 64 | }}})))|((( | ||
| 65 | (% style="list-style-type: lower-alpha" %) | ||
| 66 | * item 1 | ||
| 67 | * item 2 | ||
| 68 | ))) | ||
| 69 | |Uppercase Alphabetical list|((({{{ | ||
| 70 | A. item 1 | ||
| 71 | A. item 2 | ||
| 72 | }}})))|((( | ||
| 73 | (% style="list-style-type: upper-alpha" %) | ||
| 74 | * item 1 | ||
| 75 | * item 2 | ||
| 76 | ))) | ||
| 77 | |Lowercase Roman list|((({{{ | ||
| 78 | i. item 1 | ||
| 79 | i. item 2 | ||
| 80 | }}})))|((( | ||
| 81 | (% style="list-style-type: lower-roman" %) | ||
| 82 | * item 1 | ||
| 83 | * item 2 | ||
| 84 | ))) | ||
| 85 | |Uppercase Roman list|((({{{ | ||
| 86 | I. item 1 | ||
| 87 | I. item 2 | ||
| 88 | }}})))|((( | ||
| 89 | (% style="list-style-type: upper-roman" %) | ||
| 90 | * item 1 | ||
| 91 | * item 2 | ||
| 92 | ))) | ||
| 93 | |Lowercase Greek list|((({{{ | ||
| 94 | g. item 1 | ||
| 95 | g. item 2 | ||
| 96 | }}})))|((( | ||
| 97 | (% style="list-style-type: lower-greek" %) | ||
| 98 | * item 1 | ||
| 99 | * item 2 | ||
| 100 | ))) | ||
| 101 | |Uppercase Greek list|((({{{ | ||
| 102 | G. item 1 | ||
| 103 | G. item 2 | ||
| 104 | }}})))|((( | ||
| 105 | (% style="list-style-type: upper-greek" %) | ||
| 106 | * item 1 | ||
| 107 | * item 2 | ||
| 108 | ))) | ||
| 109 | |Hiragana list|((({{{ | ||
| 110 | h. item 1 | ||
| 111 | h. item 2 | ||
| 112 | }}})))|((( | ||
| 113 | (% style="list-style-type: hiragana" %) | ||
| 114 | * item 1 | ||
| 115 | * item 2 | ||
| 116 | ))) | ||
| 117 | |Hiragana Iroha list|((({{{ | ||
| 118 | H. item 1 | ||
| 119 | H. item 2 | ||
| 120 | }}})))|((( | ||
| 121 | (% style="list-style-type: hiragana-iroha" %) | ||
| 122 | * item 1 | ||
| 123 | * item 2 | ||
| 124 | ))) | ||
| 125 | |Katakana list|((({{{ | ||
| 126 | k. item 1 | ||
| 127 | k. item 2 | ||
| 128 | }}})))|((( | ||
| 129 | (% style="list-style-type: katakana" %) | ||
| 130 | * item 1 | ||
| 131 | * item 2 | ||
| 132 | ))) | ||
| 133 | |Katakana Iroha list|((({{{ | ||
| 134 | K. item 1 | ||
| 135 | K. item 2 | ||
| 136 | }}})))|((( | ||
| 137 | (% style="list-style-type: katakana-iroha" %) | ||
| 138 | * item 1 | ||
| 139 | * item 2 | ||
| 140 | ))) | ||
| 141 | |Armenian list|((({{{ | ||
| 142 | <ul style="list-style-type: armenian"> | ||
| 143 | <li>item 1</li> | ||
| 144 | <li>item 2</li> | ||
| 145 | </ul> | ||
| 146 | }}})))|((( | ||
| 147 | (% style="list-style-type: armenian" %) | ||
| 148 | * item 1 | ||
| 149 | * item 2 | ||
| 150 | ))) | ||
| 151 | |Hebrew list|((({{{ | ||
| 152 | j. item 1 | ||
| 153 | j. item 2 | ||
| 154 | }}})))|((( | ||
| 155 | (% style="list-style-type: hebrew" %) | ||
| 156 | * item 1 | ||
| 157 | * item 2 | ||
| 158 | ))) | ||
| 159 | |Georgian list|((({{{ | ||
| 160 | <ul style="list-style-type: georgian"> | ||
| 161 | <li>item 1</li> | ||
| 162 | <li>item 2</li> | ||
| 163 | </ul> | ||
| 164 | }}})))|((( | ||
| 165 | (% style="list-style-type: georgian" %) | ||
| 166 | * item 1 | ||
| 167 | * item 2 | ||
| 168 | ))) | ||
| 169 | |CJK ideographic list|((({{{ | ||
| 170 | <ul style="list-style-type: cjk-ideographic"> | ||
| 171 | <li>item 1</li> | ||
| 172 | <li>item 2</li> | ||
| 173 | </ul> | ||
| 174 | }}})))|((( | ||
| 175 | (% style="list-style-type: cjk-ideographic" %) | ||
| 176 | * item 1 | ||
| 177 | * item 2 | ||
| 178 | ))) | ||
| 179 | |||
| 180 | === 2.0 Lists === | ||
| 181 | |||
| 182 | {{info}}Some of the mentioned styles do not work on all browsers. For a comprehensive list follow [[this link>>http://www.quirksmode.org/css/lists.html]].{{/info}} | ||
| 183 | |||
| 184 | |=Feature|=XWiki Syntax {{velocity}}$crtSyntaxVer{{/velocity}}|=Result | ||
| 185 | |Bulleted list|((({{{ | ||
| 186 | * item 1 | ||
| 187 | ** item 2 | ||
| 188 | *** item 3 | ||
| 189 | * item 4 | ||
| 190 | }}})))|((( | ||
| 191 | * item 1 | ||
| 192 | ** item 2 | ||
| 193 | *** item 3 | ||
| 194 | * item 4 | ||
| 195 | ))) | ||
| 196 | |Numbered list|((({{{ | ||
| 197 | 1. item 1 | ||
| 198 | 11. item 2 | ||
| 199 | 111. item 3 | ||
| 200 | 1. item 4 | ||
| 201 | }}})))|((( | ||
| 202 | 1. item 1 | ||
| 203 | 11. item 2 | ||
| 204 | 111. item 3 | ||
| 205 | 1. item 4 | ||
| 206 | ))) | ||
| 207 | |Mixed list|((({{{ | ||
| 208 | 1. item 1 | ||
| 209 | 1*. item 2 | ||
| 210 | 1*. item 3 | ||
| 211 | 1. item 4 | ||
| 212 | }}})))|((( | ||
| 213 | 1. item 1 | ||
| 214 | 1*. item 2 | ||
| 215 | 1*. item 3 | ||
| 216 | 1. item 4 | ||
| 217 | ))) | ||
| 218 | |Square list|((({{{ | ||
| 219 | (% style="list-style-type: square" %) | ||
| 220 | * item 1 | ||
| 221 | * item 2 | ||
| 222 | }}})))|((( | ||
| 223 | (% style="list-style-type: square" %) | ||
| 224 | * item 1 | ||
| 225 | * item 2 | ||
| 226 | ))) | ||
| 227 | |Disc list|((({{{ | ||
| 228 | (% style="list-style-type: disc" %) | ||
| 229 | * item 1 | ||
| 230 | * item 2 | ||
| 231 | }}})))|((( | ||
| 232 | (% style="list-style-type: disc" %) | ||
| 233 | * item 1 | ||
| 234 | * item 2 | ||
| 235 | ))) | ||
| 236 | |Lowercase Alphabetical list|((({{{ | ||
| 237 | (% style="list-style-type: lower-alpha" %) | ||
| 238 | * item 1 | ||
| 239 | * item 2 | ||
| 240 | }}})))|((( | ||
| 241 | (% style="list-style-type: lower-alpha" %) | ||
| 242 | * item 1 | ||
| 243 | * item 2 | ||
| 244 | ))) | ||
| 245 | |Uppercase Alphabetical list|((({{{ | ||
| 246 | (% style="list-style-type: upper-alpha" %) | ||
| 247 | * item 1 | ||
| 248 | * item 2 | ||
| 249 | }}})))|((( | ||
| 250 | (% style="list-style-type: upper-alpha" %) | ||
| 251 | * item 1 | ||
| 252 | * item 2 | ||
| 253 | ))) | ||
| 254 | |Lowercase Roman list|((({{{ | ||
| 255 | (% style="list-style-type: lower-roman" %) | ||
| 256 | * item 1 | ||
| 257 | * item 2 | ||
| 258 | }}})))|((( | ||
| 259 | (% style="list-style-type: lower-roman" %) | ||
| 260 | * item 1 | ||
| 261 | * item 2 | ||
| 262 | ))) | ||
| 263 | |Uppercase Roman list|((({{{ | ||
| 264 | (% style="list-style-type: upper-roman" %) | ||
| 265 | * item 1 | ||
| 266 | * item 2 | ||
| 267 | }}})))|((( | ||
| 268 | (% style="list-style-type: upper-roman" %) | ||
| 269 | * item 1 | ||
| 270 | * item 2 | ||
| 271 | ))) | ||
| 272 | |Lowercase Greek list|((({{{ | ||
| 273 | (% style="list-style-type: lower-greek" %) | ||
| 274 | * item 1 | ||
| 275 | * item 2 | ||
| 276 | }}})))|((( | ||
| 277 | (% style="list-style-type: lower-greek" %) | ||
| 278 | * item 1 | ||
| 279 | * item 2 | ||
| 280 | ))) | ||
| 281 | |Uppercase Greek list|((({{{ | ||
| 282 | (% style="list-style-type: upper-greek" %) | ||
| 283 | * item 1 | ||
| 284 | * item 2 | ||
| 285 | }}})))|((( | ||
| 286 | (% style="list-style-type: upper-greek" %) | ||
| 287 | * item 1 | ||
| 288 | * item 2 | ||
| 289 | ))) | ||
| 290 | |Hiragana list|((({{{ | ||
| 291 | (% style="list-style-type: hiragana" %) | ||
| 292 | * item 1 | ||
| 293 | * item 2 | ||
| 294 | }}})))|((( | ||
| 295 | (% style="list-style-type: hiragana" %) | ||
| 296 | * item 1 | ||
| 297 | * item 2 | ||
| 298 | ))) | ||
| 299 | |Hiragana Iroha list|((({{{ | ||
| 300 | (% style="list-style-type: hiragana-iroha" %) | ||
| 301 | * item 1 | ||
| 302 | * item 2 | ||
| 303 | }}})))|((( | ||
| 304 | (% style="list-style-type: hiragana-iroha" %) | ||
| 305 | * item 1 | ||
| 306 | * item 2 | ||
| 307 | ))) | ||
| 308 | |Katakana list|((({{{ | ||
| 309 | (% style="list-style-type: katakana" %) | ||
| 310 | * item 1 | ||
| 311 | * item 2 | ||
| 312 | }}})))|((( | ||
| 313 | (% style="list-style-type: katakana" %) | ||
| 314 | * item 1 | ||
| 315 | * item 2 | ||
| 316 | ))) | ||
| 317 | |Katakana Iroha list|((({{{ | ||
| 318 | (% style="list-style-type: katakana-iroha" %) | ||
| 319 | * item 1 | ||
| 320 | * item 2 | ||
| 321 | }}})))|((( | ||
| 322 | (% style="list-style-type: katakana-iroha" %) | ||
| 323 | * item 1 | ||
| 324 | * item 2 | ||
| 325 | ))) | ||
| 326 | |Armenian list|((({{{ | ||
| 327 | (% style="list-style-type: armenian" %) | ||
| 328 | * item 1 | ||
| 329 | * item 2 | ||
| 330 | }}})))|((( | ||
| 331 | (% style="list-style-type: armenian" %) | ||
| 332 | * item 1 | ||
| 333 | * item 2 | ||
| 334 | ))) | ||
| 335 | |Hebrew list|((({{{ | ||
| 336 | (% style="list-style-type: hebrew" %) | ||
| 337 | * item 1 | ||
| 338 | * item 2 | ||
| 339 | }}})))|((( | ||
| 340 | (% style="list-style-type: hebrew" %) | ||
| 341 | * item 1 | ||
| 342 | * item 2 | ||
| 343 | ))) | ||
| 344 | |Georgian list|((({{{ | ||
| 345 | (% style="list-style-type: georgian" %) | ||
| 346 | * item 1 | ||
| 347 | * item 2 | ||
| 348 | }}})))|((( | ||
| 349 | (% style="list-style-type: georgian" %) | ||
| 350 | * item 1 | ||
| 351 | * item 2 | ||
| 352 | ))) | ||
| 353 | |CJK ideographic list|((({{{ | ||
| 354 | (% style="list-style-type: cjk-ideographic" %) | ||
| 355 | * item 1 | ||
| 356 | * item 2 | ||
| 357 | }}})))|((( | ||
| 358 | (% style="list-style-type: cjk-ideographic" %) | ||
| 359 | * item 1 | ||
| 360 | * item 2 | ||
| 361 | ))) |