Help:Wikitext: Difference between revisions
m (display wikitext code examples in monospace) |
(add info on headings (did we really not have this lol?)) |
||
Line 1: | Line 1: | ||
The following guide serves as a guide to Wiki-text hosted on this wiki. If you'd like a general guide to editing pages, you can view the MediaWiki guide to editing pages [https://www.mediawiki.org/wiki/Help:Editing_pages here]. | The following guide serves as a guide to Wiki-text hosted on this wiki. If you'd like a general guide to editing pages, you can view the MediaWiki guide to editing pages [https://www.mediawiki.org/wiki/Help:Editing_pages here]. | ||
== | ==Formatting Text== | ||
These are the basics of Wiki-text; the fundamentals of which every editors needs to know: | These are the basics of Wiki-text; the fundamentals of which every editors needs to know: | ||
Line 229: | Line 229: | ||
|Rabbitz is very<sub>awesome</sub> | |Rabbitz is very<sub>awesome</sub> | ||
|} | |} | ||
=== Headings === | |||
{{see|wikipedia:Help:Wikitext#Section_headings|wikipedia:Help:Section}} | |||
Headings are surrounded with equal signs (<code>=</code>). Heading 1, with one equals sign, is used for article titles and should not be used within articles. A table of contents will be generated automatically if there are four or more headings. | |||
{{markup | |||
|<nowiki>= Heading 1 = | |||
== Heading 2 == | |||
=== Heading 3 === | |||
==== Heading 4 ==== | |||
===== Heading 5 ===== | |||
====== Heading 6 ====== | |||
</nowiki>|{{fake heading|sub=1|Heading 1}} | |||
{{fake heading|sub=2|Heading 2}} | |||
{{fake heading|sub=3|Heading 3}} | |||
{{fake heading|sub=4|Heading 4}} | |||
{{fake heading|sub=5|Heading 5}} | |||
{{fake heading|sub=6|Heading 6}} | |||
}} | |||
__NOEDITSECTION__ | __NOEDITSECTION__ |
Revision as of 06:54, 1 January 2022
The following guide serves as a guide to Wiki-text hosted on this wiki. If you'd like a general guide to editing pages, you can view the MediaWiki guide to editing pages here.
Formatting Text
These are the basics of Wiki-text; the fundamentals of which every editors needs to know:
Strike Through
Markup | Renders as |
---|---|
<s>Rabbitz is very awesome</s>
|
|
Bold
Markup | Renders as |
---|---|
'''Rabbitz is very awesome'''
|
Rabbitz is very awesome |
Italics
Markup | Renders as |
---|---|
''Rabbitz is very awesome''
|
Rabbitz is very awesome |
Bold and Italicized
Markup | Renders as |
---|---|
'''''Rabbitz is very awesome'''''
|
Rabbitz is very awesome |
Lists
Numbered List
Markup | Renders as |
---|---|
#Rabbitz #Gets #More #Awesome ##The ###More ####This ###List ##Goes #On |
|
Bulleted List
Markup | Renders as |
---|---|
*Rabbitz *Gets *More *Awesome **The ***More ****This ***List **Goes *On |
|
Term and Definition List
Markup | Renders as |
---|---|
; Rabbitz (Term) : Awesome (Definition) |
|
; Rabbitz (Term) : Awesome (Definition) : Awesomer (Definition) : Awesomest (Definition) |
|
Font Color
Text Color
Markup | Renders as |
---|---|
{{Font color|red|Rabbitz is very awesome}}
|
Rabbitz is very awesome |
|
Rabbitz is very awesome |
Text Color + Background Color
Markup | Renders as |
---|---|
{{Font color|red|tan|Rabbitz is very awesome}}
|
Rabbitz is very awesome |
{{Font color|#e38690|tan|Rabbitz is very awesome}}
|
Rabbitz is very awesome |
|
Rabbitz is very awesome |
|
Rabbitz is very awesome |
Font
Markup | Renders as |
---|---|
|
Rabbitz is very awesome |
Superscripts
Markup | Renders as |
---|---|
Rabbitz is very<sup>awesome</sup>
|
Rabbitz isawesome |
Subscript
Markup | Renders as |
---|---|
Rabbitz is<sub>awesome</sub>
|
Rabbitz is veryawesome |
Headings
Headings are surrounded with equal signs (=
). Heading 1, with one equals sign, is used for article titles and should not be used within articles. A table of contents will be generated automatically if there are four or more headings.
Markup | Renders as |
---|---|
= Heading 1 = == Heading 2 == === Heading 3 === ==== Heading 4 ==== ===== Heading 5 ===== ====== Heading 6 ====== |
|