Polifonic Documentation
  • Sign in
  • Sign up
  • Contents
    • Unordered lists
    • Ordered lists
    • Mixed lists
  • en
    • en - English

Syntax

Syntax

  • Typography
  • Links
  • Lists
  • Files (media)
  • No formatting
  • Alerts
  • Boxes (Panels)
  • Special characters
  • Emojis
  • Labels
  • FontAwesome icons
  • Acronyms
  • Code
  • Console output
  • Graphs
  • Math formulas
  • Page index
  • Collapsible elements
  • Footnotes
  • Common attributes

Contents

Contents

  • Home page
  • Wiki 101
  • Creating content
  • Syntax reference
  • Managing your wiki

Lists

Polifonic supports both unordered and ordered lists.

Unordered lists

Unordered lists are displayed using bullets. To add an unordered list to your page, type each list item on a separate line, starting with a start and indented by 2 spaces.

This markup:

  * item 1
  * item 2

will result in this display:

  • item1
  • item 2

You can create multi-level or nested lists by indenting the next level by another 2 spaces:

This markup:

  * item 1
    * item 1.1
     * item 1.2
  * item 2
    * item 2.1
    * item 2.2

will result in this display:

  • item 1
    • item 1.1
    • item 1.2
  • item 2
    • item 2.1
    • item 2.2

Ordered lists

Ordered lists are displayed using numbered items. To add an ordered list to your page, type each item on a separate line starting with a hyphen and indented by 2 spaces.

This markup:

  - item 1
  - item 2

will result in this display:

  1. item 1
  2. item 2

You can nest ordered lists by indenting the sub-list by another 2 spaces.

This markup:

  - item 1
    - item 1.1
    - item 1.2
  - item 2
    - item 2.1
    - item 2.2

will result in this display:

  1. item 1
    1. item 1.1
    2. item 1.2
  2. item 2
    1. item 2.1
    2. item 2.2

Mixed lists

You can mix unordered and ordered lists:

The following markup:

  - item 1
  - item 2
    * item 2.1
      - item 2.1.1
      - item 2.1.2
    * item 2.2
  - item2

will result in the following display:

  1. item 1
  2. item 2
    • item 2.1
      1. item 2.1.1
      2. item 2.1.2
    • item 2.2
  3. item2
This page was modified on 18 Sep 2015 at 11:36 AM.

Source

====== Lists ====== Polifonic supports both unordered and ordered lists. ===== Unordered lists ===== Unordered lists are displayed using bullets. To add an unordered list to your page, type each list item on a separate line, starting with a start and indented by 2 spaces. This markup: <code> * item 1 * item 2 </code> will result in this display: * item1 * item 2 You can create multi-level or nested lists by indenting the next level by another 2 spaces: This markup: <code> * item 1 * item 1.1 * item 1.2 * item 2 * item 2.1 * item 2.2 </code> will result in this display: * item 1 * item 1.1 * item 1.2 * item 2 * item 2.1 * item 2.2 ===== Ordered lists ===== Ordered lists are displayed using numbered items. To add an ordered list to your page, type each item on a separate line starting with a hyphen and indented by 2 spaces. This markup: <code> - item 1 - item 2 </code> will result in this display: - item 1 - item 2 You can nest ordered lists by indenting the sub-list by another 2 spaces. This markup: <code> - item 1 - item 1.1 - item 1.2 - item 2 - item 2.1 - item 2.2 </code> will result in this display: - item 1 - item 1.1 - item 1.2 - item 2 - item 2.1 - item 2.2 ===== Mixed lists ===== You can mix unordered and ordered lists: The following markup: <code> - item 1 - item 2 * item 2.1 - item 2.1.1 - item 2.1.2 * item 2.2 - item2 </code> will result in the following display: - item 1 - item 2 * item 2.1 - item 2.1.1 - item 2.1.2 * item 2.2 - item2
This website uses cookies to ensure you get the best browsing experience.