Wikitext (or wiki markup) is the formatting language used to write articles on the RetroTechCollection Wiki.

For a quick introduction, see Editing Basics.

For the full MediaWiki wikitext reference, see the official MediaWiki formatting guide.

Common Formatting

edit
Markup Result Notes
'''bold''' bold Three apostrophes each side
''italic'' italic Two apostrophes each side
'''''bold italic''''' bold italic Five apostrophes each side
== Heading == (section heading) Two equals signs
=== Subheading === (subsection) Three equals signs
* Bullet (bullet point) Asterisk at start of line
# Numbered (numbered item) Hash at start of line
[[Internal Link]] Internal Link Double square brackets
[https://example.com External] External Single square brackets
[[File:Example.jpg|thumb|Caption]] (image with caption) File embedding
<ref>Source</ref> (footnote) Reference citation
<nowiki>raw text</nowiki> (unformatted) Prevents wiki parsing

Tables

edit

Tables use a pipe-based syntax:

{| class="wikitable"
|-
! Header 1 !! Header 2
|-
| Cell 1 || Cell 2
|-
| Cell 3 || Cell 4
|}

See Also

edit