Help:Editing: Difference between revisions

Text formatting: this is the MediaWiki era
Xenwolf (talk | contribs)
m Reverted edits by PiotrGrochowski (talk) to last revision by Xenwolf
Tag: Rollback
Line 43: Line 43:
=== Lists ===
=== Lists ===


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


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


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


<ol><li>first level<ol><li>second level</li><li>second level</li></ol></li><li>first level</li></ol>
# first level
## 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 ;)