Help:Lists

From BaltoCo

Jump to: navigation, search


Help Topics Portal
Main Contents Page
New Article Text Links Images Video Categories
Templates Lists Tables Headings Table of Contents Redirect
Signatures HTML  


Contents

[edit] Bullets

Explanation Code to Add Visible Result
Create a bulleted list using asterisks (*).

* Item 1
* Item 2
** Item 2.1
* Item 3
** Item 3.1
** Item 3.2

  • Item 1
  • Item 2
    • Item 2.1
  • Item 3
    • Item 3.1
    • Item 3.2

[edit] Numbers

Explanation Code to Add Visible Result
Create a numbered list using number signs (#)

# Item one
# Item two
## Item two point one
# Item three
## Item three point one
## Item three point two

  1. Item one
  2. Item two
    1. Item two point one
  3. Item three
    1. Item three point one
    2. Item three point two

[edit] Mixed

Explanation Code to Add Visible Result
Create a numbered list with bullets mixed in (or vice versa).

# Item one
# Item two
#* Item two point one
# Item three
#* Item three point one
#* Item three point two

  1. Item one
  2. Item two
    • Item two point one
  3. Item three
    • Item three point one
    • Item three point two

[edit] Definitions

Explanation Code to Add Visible Result
A definition list is a little bit different than the previous lists. The word to define is designated by a leading semicolon (;) and it's definitions by colons (:).

; Word to define
: First definition
: Second definition

Word to define
First definition
Second definition
The definitions can also be nested

; Word to define
: First definition
: Second definition
:; Third definition
:: First sub-definition

Word to define
First definition
Second definition
blah
blah blah
Personal tools