Wikitext Cheatsheet
Condensed guide to Wikitext coding
Click on sort icon to put list in alphabetical order
| Description | Type | You Get | ||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Headers | ==Header 2== ===Header 3=== |
Header 2 Header 3
| ||||||||||||||||||||
| Lists - unordered | *Item one *Item two *Item three |
| ||||||||||||||||||||
| Lists - ordered | #Item one #Item two #Item three |
| ||||||||||||||||||||
| Links - internal | [[Missouri Genealogy|Missouri]] Double square brackets - Name of article - pipe - User-defined link name |
Missouri | ||||||||||||||||||||
| Links - external | [https://familysearch.org(space)Family Search] Single square brackets - URL of external link - space - User-defined link name |
Family Search Notice little box and arrow at the end of the name of the link. | ||||||||||||||||||||
| Comments | <!--Comment goes here between dashes--> (At least two dashes are required on either side of the comment) |
(No comments should appear) | ||||||||||||||||||||
| Categories | [[Category:name of category]] | [[Category:Name of Category]] | ||||||||||||||||||||
| Images | [[File:name of image|location on page|size in px|caption]] | IMAGE | ||||||||||||||||||||
| Paragraph | <span>Lorem ipsum ....</span> | |||||||||||||||||||||
| In-line style | <span style="property:change">Lorem ipsum ....</span> | |||||||||||||||||||||
| font-size | <span style="font-size:16pt">Lorem ipsum ....</span> |
Lorem ipsum ..... | ||||||||||||||||||||
| font-family | <span style="font-family:times new roman">Lorem ipsum ....</span>
Click here for all acceptable font styles |
Lorem ipsum .....
| ||||||||||||||||||||
| font-color | <span style="color:blue">Lorem ipsum ....</span>
Click here for all acceptable colors |
Lorem ipsum ..... | ||||||||||||||||||||
| bold text | <span>'''Lorem ipsum ....'''</span> | Lorem ipsum .... | ||||||||||||||||||||
| italicized text | <span>''Lorem ipsum ....''</span> | Lorem ipsum .... | ||||||||||||||||||||
| multiple attributes | <span style="font-family:times new roman; font-size:14pt; color:blue">Lorem ipsum ....</span>
Note the semi-colon between attributes |
Lorem ipsum .... | ||||||||||||||||||||
| backgrounds | <span style="background:lightgray">Lorem ipsum ....</span>
Click here for all acceptable colors |
Lorem ipsum .... | ||||||||||||||||||||
| padding | <span style="padding:10px">Lorem ipsum ....</span>
|
Content .... Content ....
| ||||||||||||||||||||
| Margins | <span style="margin:10px">Lorem ipsum ....</span>
|
Contents.... Contents ....
| ||||||||||||||||||||
| div tag | <div style="font-family:times new roman; font-size:14pt; color:blue">Lorem ipsum ....</div> No builtin margins or padding as in paragraph tags
|
Lorem ipsum ....
| ||||||||||||||||||||
| borders | <div style="border:1px solid black">Lorem ipsum ....</div>
|
Lorem ipsum .... | ||||||||||||||||||||
| border radius | <span style="border:1px solid black; border-radius:5px">Lorem ipsum ....</span>
|
Lorem ipsum .... | ||||||||||||||||||||
| border shadow | <span style="border:1px solid black; box-shadow:5px 5px 3px lightgray">Lorem ipsum ....</span>
|
Lorem ipsum .... | ||||||||||||||||||||
| width and height | <span style="width:200px; height:50px">Lorem ipsum ....</span> |
Lorem ipsum .... | ||||||||||||||||||||
| Alignment - horizontal | <span style="text-align:center">Lorem ipsum ....</span>
|
Lorem ipsum .... | ||||||||||||||||||||
| alignment - vertical | <span style="height:50px; line-height:50px">Lorem ipsum ....</span>
|
Lorem ipsum .... | ||||||||||||||||||||
| Tables |
|
|||||||||||||||||||||
| Text Wrapping (floating) | <span style="float:right">Lorem ipsum ....</span> |
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec sit amet iaculis metus. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Fusce elementum efficitur faucibus. | ||||||||||||||||||||
| Table scrolling | <div style="overflow:scroll; width:300px; height:100px"
{| style="border:1px solid red" |
| ||||||||||||||||||||
| Templates |
To save a template: {{Template:name of template}} |
|||||||||||||||||||||
| Breadcrumb trails |
The Breadcrumb trail is a specialized template where one enters internal links leading to the page you are on: {{breadcrumb
|
| ||||||||||||||||||||
| References/Footnotes | <ref>This is a footnote</ref>
|
| ||||||||||||||||||||
| SEO |
|
| ||||||||||||||||||||
| Table column spans |
{|
|
| ||||||||||||||||||||
| Table row span |
{|
|
| ||||||||||||||||||||
| Parameters | {{{parameter}}}
{{Name of template
|
name of parameter | ||||||||||||||||||||
| If functions | |{{#if:{{{parameter|}}}|name of parameter |
{{{parameter}}} }}
| parameter= If nothing is entered after the equal sign the entire line will be missing. |
If the parameter is blank, there is no line. If the parameter is added, the text will show. | |||||||||||||||||||
| Position relative | <div style="position:relative">
<div style="position:relative;top:20px; left:100px">Stuff</div>
|
|||||||||||||||||||||
| Position-absolute | <div style="position:absolute">
<div style="position:relative">
|
|||||||||||||||||||||