Help:Editing: Difference between revisions

Xenwolf (talk | contribs)
Tables: +complex examples and suggestions for compacting the wiki text
controversy...
Tag: Undo
Line 43: Line 43:
=== Lists ===
=== Lists ===


You can create bulleted lists by one or more <code>*</code> (asterisk) chars at the beginning of the line:
You can create bulleted lists by using <nowiki><ul> and <li></nowiki> tags:


* first level
<ul><li>first level<ul><li>second level</li><li>second level</li></ul></li><li>first level</li></ul>
** second level
** second level
* first level


You can create numbered lists by one or more <code>#</code> (number sign) at the beginning of the line:
You can create numbered lists by using <nowiki><ol> and <li></nowiki> tags:


# first level
<ol><li>first level<ol><li>second level</li><li>second level</li></ol></li><li>first level</li></ol>
## second level
## second level
# first level


...and you can of course mix both, if you know what you're doing ;)
...and you can of course mix both, if you know what you're doing ;)
Line 63: Line 57:
#* second level
#* second level
# first level
# first level
You may also use a different [[list model]].


=== Tables ===
=== Tables ===