Skip to content

Nested Unordered Lists #2

@RitaRez

Description

@RitaRez

How it should be in Markdown:

First option:

- First item
- Second item
- Third item
    - Indented item
    - Indented item
- Fourth item

Second Option:

+ First item
+Second item
+ Third item
    + Indented item
    + Indented item
+ Fourth item

Third Option:

* First item
* Second item
* Third item
    * Indented item
    * Indented item
* Fourth item

How it should be in HTML?

<ul>
  <li>First item</li>
  <li>Second item</li>
  <li>Third item
    <ul>
      <li>Indented item</li>
      <li>Indented item</li>
    </ul>
  </li>
  <li>Fourth item</li>
</ul>

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions