Editing Guide:Text Formatting

From Slicer Wiki
Jump to: navigation, search
Home < Editing Guide:Text Formatting
Editing Guide
Getting Started
Edit Existing Page
Text Formatting
TOCs and Headers
Links
Add New Page/Link
Uploading Documents and Images


Text in wiki pages can be easily formatted in the following ways:

Italics

Italics are created using two single quotes on each side of a block of text.

Bold

Boldface is created by using three single quotes on each side of a block of text.

Boxed

A box effect is created by starting the line with a space.

Lists

  • Bullet lists can be created using an * at the start of each line.
    • Nested bullets can be created using ** at the start of each line.
  • Enumerated lists can be created using a # at the start of each line.
    • Nested enumerated lists can be created using ## at the start of each line.

Examples of lists:

Example of a bulleted list:

*A
*B
*C

which appears as:

  • A
  • B
  • C

Example of a nested bullet list:

*A
**A1
**A2
*B
**B1
**B2
*C
**C1
**C2

which appears as:

  • A
    • A1
    • A2
  • B
    • B1
    • B2
  • C
    • C1
    • C2

Example of an enumerated list:

#A
#B
#C

which appears as:

  1. A
  2. B
  3. C

Example of a nested enumerated list:

#A
##A1
##A2
#B
##B1
##B2
#C
##C1
##C2

which appears as:

  1. A
    1. A1
    2. A2
  2. B
    1. B1
    2. B2
  3. C
    1. C1
    2. C2