Help:Formatting

The UESPWiki – Your source for The Elder Scrolls since 1995
Jump to: navigation, search

Wikipedia Wiki Editing Resources[edit]

Wikipedia's Wiki Editing Cheatsheet
Wikipedia's Wiki Markup/Text Formatting Guide

Spaces, New Lines, Paragraphs, And More[edit]

You might have already noticed that single spaces between lines do not create spaces in the text. For example:

Typing 
like 
this
would come out 
like this:

Typing like this would come out like this:

A blank space between the two lines, on the other hand, creates a new paragraph. For example:

This would look like one paragraph.

This would look like another.

This would be the third.

This would look like one paragraph.

This would look like another.

This would be the third.

For a new line, you must use the line break (br) command after the line. (Single Spaces are not necessary, but are used for clarity.)

Just do this:

Text Line 1<br>
Text Line 2<br>

Paragraph 2 Line 1

Text Line 1
Text Line 2

Paragraph 2 Line 1

Remember: For the sake of clarity, it is best to place a line break, but not necessary.

Emphasis[edit]

Hello!

How Are You?

This is basic, but important. Use three apostrophes for bold text and two for italics. The above section was made like this:

'''Hello!'''

''How Are You?''

HTML encoding also works. For Bold and Italics you would use the following:

<b>Bold</b> and <i>Italics</i>

Lists[edit]

  • Creating a bulleted list is simple.
    • Creating Sub-Bullets is just as easy.
      • And so on and so on and so on.
  • Going back is easy too.
*Creating a bulleted list is simple.
**Creating Sub-Bullets is just as easy.
***And so on and so on and so on.
*Going back is easy too.
  1. Numbered Lists are almost the same
    1. So are sub numbers
      1. sub sub numbers
  2. and going back is also just as easy.
#Numbered Lists are almost the same
##So are sub numbers
###sub sub numbers
#and going back is also just as easy.
  • Mixing lists are possible too.
    1. Such as this one
      • You can also
        have new lines
        inside lists.
*Mixing lists are possible too.
*#Such as this one
*#*You can also<br>have new lines<br>inside lists.

Horizontal Rules[edit]

Don't use these too often, as they break up the page. Instead, it is recommended you use section breaks (see below). If you really need them, however, this is the formatting:

----

Indentation[edit]

A colon indents a line.
:A colon indents a line.

Alignment[edit]

A page is left-aligned by default.

Center Text Like This
<center> Center Text Like This </center>

Section Breaks[edit]

Many articles on the wiki use section headers and tables of contents, like the ones above. Two equal(=) signs makes a topic.

==This Is a Topic==
===This Is a Subtopic===
====This is a Sub Sub Topic====
===This is a subtopic of the first topic, but not the other sub topics===
==This is another topic==

To add a Table Of Contents, type:

__TOC__

If a Table of Contents is automatic for the article (true for certain namespaces and templates), you can use this formatting to remove one:

__NOTOC__

Note: Table of contents lists only list topics that appear after they are inserted.