My program doesn't have bugs. It just develops random features.

Difference between revisions of "Help:Formatting"

From Unreal Wiki, The Unreal Engine Documentation Site
Jump to: navigation, search
m (1 revision(s))
m
 
Line 145: Line 145:
  
 
'''Note:''' Table of contents lists only list topics that appear after they are inserted.
 
'''Note:''' Table of contents lists only list topics that appear after they are inserted.
 +
 +
[[Category:Help|{{PAGENAME}}]]

Latest revision as of 13:21, 18 February 2008

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

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 's for a Bold and two for italics. The above section was made like this:

'''Hello!'''

''How Are You?''

HTML encoding also works, such as Bold and Italics

<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.
#Numbered Lists are almost the same
##So are sub numbers
###sub sub numbers
#and going back.
  • Mixing lists are possible too.
    1. Such as this one
      • You can also
        have newlines
        inside lists.
*Mixing lists are possible too.
*#Such as this one
*#*You can also<br>have newlines<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 certian 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.