Help:Wikitext: Difference between revisions

652 bytes added ,  5 years ago
no edit summary
(We are writing our own custom help pages; please do not copy verbatim from Wikia)
Tag: Replaced
No edit summary
Line 1:
{{Help page}}
'''Wikitext''', also known as '''wiki markup''', refers to the syntax, keywords, and punctuation marks used by {{SITENAME}} to format a page. For example, to make text italicized, you would type <code><nowiki>''text to be italicized''</nowiki></code> into the page when [[Help:Editing|editing]] it.
 
==List of markup codes==
===Inline formatting===
These codes work anywhere on the page.
{| class="wikitable"
! Description
! width=40% | You type
! width=40% | You get
|-
|Bold text
|<pre>'''Bold text'''</pre>
|'''Bold text'''
|-
|Italic text
|<pre>''Italic text''</pre>
|''Italic text''
|-
|Bold and italic text
|<pre>'''''Bold and italic'''''</pre>
|'''''Bold and italic'''''
|-
|Escape wiki markup
|<pre><nowiki>no ''markup''</nowiki></pre>
|<nowiki>no ''markup''</nowiki>
|-
|Internal link
|<pre>[[Help:Contents]]</pre>
|[[Help:Contents]]
|-
|Renamed internal link
|<pre>[[Help:Contents|Main help page]]</pre>
|[[Help:Contents|Main help page]]
|}