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.
(wip)
 
m (Text replacement - "<br>" to "<br/>")
 
(3 intermediate revisions by one other user not shown)
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
|-
|-
| Italic text<br>Bold text<br>Bold & Italic text
| Italic text<br/>Bold text<br/>Bold & Italic text
| <pre>''italic''
| <pre>''italic''
'''bold'''
'''bold'''
'''''bold & italic'''''</pre>
'''''bold & italic'''''</pre>
| ''italic''<br>'''bold'''<br>'''''bold & italic'''''
| ''italic''<br/>'''bold'''<br/>'''''bold & italic'''''
|-
|-
| Headings<br>(skip Level 1)
| Headings<br/>(skip Level 1)
| <pre>
| <pre>
==Level 2 Heading==
==Level 2 Heading==
Line 19: Line 19:
</pre>
</pre>
| <h2>Level 2 Heading</h2><h3>Level 3 Heading</h3><h4>Level 4 Heading</h4><h5>Level 5 Heading</h5><h6>Level 6 Heading</h6>
| <h2>Level 2 Heading</h2><h3>Level 3 Heading</h3><h4>Level 4 Heading</h4><h5>Level 5 Heading</h5><h6>Level 6 Heading</h6>
|-
| Links
| <pre>[[Link]]
[[Link]]s
[[Link|Zelda]]</pre>
| [[Link]]<br/>[[Link]]s<br/>[[Link|Zelda]]
|-
| Images<br/>See [http://www.mediawiki.org/wiki/Help:Images MediaWiki:Help:Images]<br/>for more options
| <pre>[[File:Raft-AoL-Artwork.png]]</pre>
| [[File:Raft-AoL-Artwork.png]]
|-
| Horizontal rule
| <pre>above
----
below</pre>
| above
----
below
|-
| Bulleted lists
| <pre>
*Start each line with an asterisk
**More asterisks for
***deeper levels
**Line breaks<br/>don't break levels
</pre>
|
*Start each line with an asterisk
**More asterisks for
***deeper levels
**Line breaks<br/>don't break levels
|-
| Numbered lists
| <pre>
#Start each line with a number sign
##More number signs for
###deeper levels
##Line breaks<br/>don't break levels
</pre>
|
#Start each line with a number sign
##More number signs for
###deeper 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
|}
|}
|}

Latest revision as of 18:54, February 8, 2015

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
Links
[[Link]]
[[Link]]s
[[Link|Zelda]]
Link
Links
Zelda
Images
See MediaWiki:Help:Images
for more options
[[File:Raft-AoL-Artwork.png]]
Raft-AoL-Artwork.png
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