Help:Quick Reference

From The Freestyle Knowledge Base
Revision as of 01:59, 2 February 2018 by Admin (talk | contribs) (Created page with "= Section Formatting = Code: = Section Formatting = == Section Heading - Level 2 == Code: == Section Heading - Level 2 == === Section Heading - Level 3 === Code:...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Section Formatting

Code: 
= Section Formatting =

Section Heading - Level 2

Code: 
==  Section Heading - Level 2 ==


Section Heading - Level 3

Code: 
===  Section Heading - Level 2 ===


Section Heading - Level 4

Code: 
====  Section Heading - Level 4 ====

Text Formatting

Italic text

Code: 
''Italic text''

Bold text

Code: 
'''Bold text'''

Bold and italic

Code: 
'''''Bold and italic'''''

Escape ''wiki'' markup (This will display the text as seen, so it doesn't try to italicize the word in this example)

Code: 
<nowiki>Escape ''wiki'' markup</nowiki>

Bullet List

  • Start each line
  • with an asterisk (*).
    • More asterisks give deeper
      • and deeper levels.
  • Line breaks
    don't break levels.
      • But jumping levels creates empty space.

Any other start ends the list.

  • bullet list
- definition
  • sublist that doesn't create empty
  • spaces after definition
Code: 
* Start each line
* with an asterisk (*).
** More asterisks give deeper
*** and deeper levels.
* Line breaks 
don't break levels. *** But jumping levels creates empty space. Any other start ends the list.

Numbered List

  1. Start each line
  2. with a number sign (#).
    1. More number signs give deeper
      1. and deeper
      2. levels.
  3. Line breaks
    don't break levels.
      1. But jumping levels creates empty space.
  4. Blank lines
  1. end the list and start another.

Any other start also ends the list.

Code: 
# Start each line
# with a number sign (#).
## More number signs give deeper
### and deeper
### levels.
# Line breaks 
don't break levels. ### But jumping levels creates empty space. # Blank lines # end the list and start another. Any other start also ends the list.

Horizontal Rule

Text Before


Text After

Code: 
Text Before
----
Text After