Help:Editing: Difference between revisions
→Social aspects: added link to user pages |
→Text formatting: section about basic lists with reference to advances lists |
||
| Line 38: | Line 38: | ||
=== Lists === | === Lists === | ||
:''See [[Help:List]] for advanced use cases for lists.'' | |||
There are tree basic types of lists in HTML that are supported in MediaWiki markup: [[#unordered|unordered]] (or "bulleted") lists, [[#numbered|numbered]] lists, [[#description|description]] lists. Each type of lists can be created within wiki source code by just indicating the items at the beginning of the line (the list is automatically built around them). Each item has to start on a new line. | |||
==== Unordered ==== | |||
Unordered list items are marked by <code>*</code> (asterisk): | |||
* | * Coffee | ||
* | * Wine | ||
* Milk | |||
* | |||
==== Numbered ==== | |||
Numbered list items are marked by <code>#</code> (number sign): | |||
# | # Coffee | ||
# | # Wine | ||
# Milk | |||
# | |||
==== Description ==== | |||
Description items are marked by <code>;</code> (semicolon) for term and <code>:</code> (colon) for the description: | |||
# | ; Coffee | ||
#* | : a brewed drink prepared from roasted coffee beans. (from: ''[https://en.wikipedia.org/wiki/Coffee Coffee - Wikipedia'']) | ||
#* | ; Wine | ||
# | : an alcoholic beverage made from fermented grapes. (from: ''[https://en.wikipedia.org/wiki/Wine Wine - Wikipedia]'') | ||
; Milk | |||
: a white liquid nutrient-rich food produced by the mammary glands of mammals. (from: ''[https://en.wikipedia.org/wiki/Milk Milk - Wikipedia]'') | |||
==== Combined List Styles ==== | |||
# Morning | |||
#* Coffee | |||
#* Milk | |||
# Evening | |||
#* Coffee | |||
#* Wine | |||
=== Tables === | === Tables === | ||