Help:Editing: Difference between revisions

Xenwolf (talk | contribs)
m Xenwolf moved page Wiki help to Help:Wiki help: moved to proper namespace
Text formatting: this is the MediaWiki era
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 ;)