User:Xd1358/formatting

ShoutWiki — express yourself and be heard!
Jump to navigation Jump to search
Input Output Notes

Linking

[[Main Page]] Main Page Produces a normal link
More linking help can be found at Help:Links.

Basic formatting

''Italic text'' Italic text Text surrounded by two apostrophes or the HTML element <i> and </i> is italicized.
'''Bold text''' Bold text Text surrounded by three apostrophes or the HTML element <b> and </b> is bolded.
'''''Bold and italicized text''''' Bold and italicized text Text surrounded by five apostrophes or the HTML elements <b><i> and </i></b> is bolded and italicized.
  • <small>Small text</small>
  • <small><small>Smaller text</small></small>
  • Small text
  • Smaller text
Text surrounded by <small> tags is small. Use multiple tags to make the text even smaller.
  • <big>Big text</big>
  • <big><big>Bigger text</big></big>
  • Big text
  • Bigger text
Text surrounded by <big> tags is big. Use multiple tags to make the text even bigger.
Normal text. <sup>Superscripted text</sup> Normal text. Superscripted text
Normal text. <sub>Subscripted text</sub> Normal text. Subscripted text
Normal text. <sup><sup>Even more superscripted text</sup></sup> Normal text. Superscripted text
Normal text. <sup><sup></sub>Using both</sub></sup></sup> Normal text. Using both
The <div align="align"></div> tags can be used for aligning text:<br /><div align="right">Right-aligned text</div><br /><div align="center">Text aligned to the center</div> The <div align="align"></div> tags can be used for aligning text:
Right-aligned text

Text aligned to the center
In addition, the <div align="center"></div> tags can be replaced with <center></center>.
A line break
does not affect the text.

But an empty line starts a new paragraph.

You can break a line using the <br /> tag.<br />This is a new line.

You can also break a line using the <hr /> tag or four hyphens. 
This creates a vertical line, like this: <hr />
A line break does not affect the text.

But an empty line starts a new paragraph.

You can break a line using the <br /> tag.
This is a new line.

You can also break a line using the <hr /> tag or four hyphens. This creates a vertical line, like this:

Headings

Headings are created using equal signs (=) or the <hn> element (n is the number of the heading size; <h2> creates a level 2 heading). The more equal signs you wrap the text with, the smaller the heading gets.

==This is a level two heading==

<h2>This is also a level two heading==</h2>

===This is a level three heading===

This is a level two heading[edit | edit source]

This is also a level two heading

This is a level three heading[edit | edit source]

You can hide the table of contents from a page using the __NOTOC__ magic word. You can disable section editing using another magic word, __NOSECTIONEDIT__