Help:List

From Xenharmonic Wiki
Revision as of 18:12, 22 October 2018 by Xenwolf (talk | contribs) (simplified, corrected)
Jump to navigation Jump to search
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 for embedding HTML in these cases.

Unordered lists

<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>
  • 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
  • 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

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.

<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>
  1. 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
  2. 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

roman numbers

  1. One item
  2. Another item
  1. One item
  2. Another item

latin letters

  1. One item
  2. Another item
  1. One item
  2. Another item

See also