Help:List: Difference between revisions
Created page with ":''See Help:Editing #List for basic list syntax.'' Lists can get complicated, if they are nested in other lists, items get longer than just one line, for instance whole p..." |
simplified, corrected |
||
Line 1: | Line 1: | ||
:''See [[Help:Editing #List]] for basic list syntax.'' | :''See [[Help:Editing #List]] for basic list syntax.'' | ||
Lists can get complicated, if they are nested in other lists, items get longer than just one line, for instance whole paragraphs. Items contain images and so on. In these cases simple wiki markup does not simplify lists but complicates them. MediaWiki allows | Lists can get complicated, if they are nested in other lists, items get longer than just one line, for instance whole paragraphs. Items contain images and so on. In these cases simple wiki markup does not simplify lists but complicates them. | ||
MediaWiki allows for embedding HTML in these cases. | |||
== Unordered lists == | == Unordered lists == | ||
<nowiki><ul> | |||
<li> | |||
One item that contains much text even if it isn't really interesting to read all of it: | |||
Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor | |||
invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et | |||
accusam et justo duo dolores | |||
</li> | |||
<li> | |||
Another item that contains much text even if it isn't really interesting to read all of it: | |||
Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor | |||
invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. | |||
At vero eos et accusam et justo duo dolores | |||
</li> | |||
</ul></nowiki> | |||
<ul> | <ul> | ||
<li> | <li> | ||
One item that contains much text even if it isn't really interesting to read all of it: | One item that contains much text even if it isn't really interesting to read all of it: | ||
Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor | |||
invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et | |||
accusam et justo duo dolores | |||
</li> | </li> | ||
<li> | <li> | ||
Another item that contains much text even if it isn't really interesting to read all of it: | Another item that contains much text even if it isn't really interesting to read all of it: | ||
Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor | |||
invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et | |||
accusam et justo duo dolores | |||
</li> | </li> | ||
</ul> | </ul> | ||
== Numbered lists == | == Numbered lists == | ||
Numbered (or ordered) list show an ascending number for each item by default. It is possible to change this style, see sections [[#roman numbers]] or [[#latin letters]] for how. | |||
<nowiki><ol> | |||
<li> | |||
One item that contains much text even if it isn't really interesting to read all of it: | |||
Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor | |||
invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et | |||
accusam et justo duo dolores | |||
</li> | |||
<li> | |||
Another item that contains much text even if it isn't really interesting to read all of it: | |||
Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor | |||
invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et | |||
accusam et justo duo dolores | |||
</li> | |||
</ol></nowiki> | |||
<ol> | <ol> | ||
<li> | <li> | ||
One item that contains much text even if it isn't really interesting to read all of it: | One item that contains much text even if it isn't really interesting to read all of it: | ||
Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor | |||
invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et | |||
accusam et justo duo dolores | |||
</li> | </li> | ||
<li> | <li> | ||
Another item that contains much text even if it isn't really interesting to read all of it: | Another item that contains much text even if it isn't really interesting to read all of it: | ||
Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor | |||
invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et | |||
accusam et justo duo dolores | |||
</li> | </li> | ||
</ol> | </ol> | ||
=== roman | === roman numbers === | ||
<ol style="list-style-type: upper-roman;"> | <ol style="list-style-type: upper-roman;"> | ||
<li> | <li> | ||
Line 70: | Line 114: | ||
[[Category:Help]] | [[Category:Help]] | ||
[[Category:todo:expand]] |