Last active
July 8, 2026 16:58
-
-
Save bwann/b9981500d21965275dd9cad6637bc50c to your computer and use it in GitHub Desktop.
MediaWiki edit page quick format
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| myawesomewiki.com/index.php?title=MediaWiki:Edittools&action=edit | |
| then throw in: | |
| (take out the div class if you don't want it to be collapsed by default) | |
| <!-- Text here will be shown below edit and upload forms. --> | |
| <div class="mw-collapsible mw-collapsed"> | |
| '''Quick Formatting Reference''' | |
| {| class="wikitable" | |
| ! What you want | |
| ! Type | |
| ! Result | |
| |- | |
| | Level 2 heading | |
| | <nowiki>== Heading ==</nowiki> | |
| | == Heading == | |
| |- | |
| | Level 3 heading | |
| | <nowiki>=== Heading ===</nowiki> | |
| | === Heading === | |
| |- | |
| | Level 4 heading | |
| | <nowiki>==== Heading ====</nowiki> | |
| | ==== Heading ==== | |
| |- | |
| | Bold | |
| | <nowiki>'''bold'''</nowiki> | |
| | '''bold''' | |
| |- | |
| | Italic | |
| | <nowiki>''italic''</nowiki> | |
| | ''italic'' | |
| |- | |
| | Bold + Italic | |
| | <nowiki>'''''both'''''</nowiki> | |
| | '''''both''''' | |
| |- | |
| | Internal link | |
| | <nowiki>[[Main Page]]</nowiki> | |
| | [[Main Page]] | |
| |- | |
| | Link with label | |
| | <nowiki>[[Main Page|Home]]</nowiki> | |
| | [[Main Page|Home]] | |
| |- | |
| | External link | |
| | <nowiki>[https://www.example.com Example]</nowiki> | |
| | [https://www.example.com Example] | |
| |- | |
| | Horizontal line | |
| | <nowiki>----</nowiki> | |
| | ---- | |
| |- | |
| | Signature | |
| | <nowiki>~~~~</nowiki> | |
| | [[User:Bwann|Bwann]] ([[User talk:Bwann|talk]]) 16:11, 8 July 2026 (UTC) | |
| |} | |
| </div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment