Help:Markup: Difference between revisions

From Zelda Dungeon Wiki
Jump to navigation Jump to search
Want an adless experience? Log in or Create an account.
No edit summary
No edit summary
Line 1: Line 1:
While it's possible to contribute pure text to the wiki, it's important to learn a few basics about the MediaWiki markup syntax.
While it's possible to contribute pure text to the wiki, it's important to learn a few basics about the MediaWiki markup syntax.
__NOTOC__
__NOTOC__
{| class=wikitable
{| class="wikitable"
! Description !! Syntax !! Result
! Description !! Syntax !! Result
|-
|-
Line 21: Line 21:
|-
|-
| Horizontal rule
| Horizontal rule
| above<nowiki>----</nowiki>below
| <pre>above
| above----below
----
below</pre>
| above
----
below
|-
|-
| Bulleted lists
| Bulleted lists
Line 49: Line 53:
###deeper levels
###deeper levels
##Line breaks<br>don't break levels
##Line breaks<br>don't break levels
|-
| Tables
| <pre>{| class="wikitable"
! header !! col 2
|-
| row 2
| row 2 col 2
|-
| colspan=2 | row 3
|}</pre>
|
{| class="wikitable"
! header !! col 2
|-
| row 2
| row 2 col 2
|-
| colspan=2 | row 3
|}
|}
|}

Revision as of 01:53, May 23, 2013

While it's possible to contribute pure text to the wiki, it's important to learn a few basics about the MediaWiki markup syntax.

Description Syntax Result
Italic text
Bold text
Bold & Italic text
''italic''
'''bold'''
'''''bold & italic'''''
italic
bold
bold & italic
Headings
(skip Level 1)
==Level 2 Heading==
===Level 3 Heading===
====Level 4 Heading====
=====Level 5 Heading=====
======Level 6 Heading======

Level 2 Heading

Level 3 Heading

Level 4 Heading

Level 5 Heading
Level 6 Heading
Horizontal rule
above
----
below
above

below

Bulleted lists
*Start each line with an asterisk
**More asterisks for
***deeper levels
**Line breaks<br>don't break levels
  • Start each line with an asterisk
    • More asterisks for
      • deeper levels
    • Line breaks
      don't break levels
Numbered lists
#Start each line with a number sign
##More number signs for
###deeper levels
##Line breaks<br>don't break levels
  1. Start each line with a number sign
    1. More number signs for
      1. deeper levels
    2. Line breaks
      don't break levels
Tables
{| class="wikitable"
! header !! col 2
|-
| row 2
| row 2 col 2
|-
| colspan=2 | row 3
|}
header col 2
row 2 row 2 col 2
row 3