# Lists

#### Unordered list

* First item
* Second item
  * First nested item
    * Second nested item
* Third item

#### Ordered list

1. First item
2. Second item
   1. First nested item
      1. Second nested item
3. Third item

#### Tasks

* [ ] Task 1
* [x] Task 2, done

#### Mix

1. Ordered list item
   * Unordered list item

#### UL With blocks

* ## List item starting with a heading

  A paragraph below it.
* Text before code block

  ```
  code block
  a second line
  ```
* ```
  Directly, a code block
  ```

#### OL With blocks

1. ## List item starting with a heading

   A paragraph below it.
2. Text before code block

   ```
   code block
   a second line
   ```
3. ```
   Directly, a code block
   ```

#### Tasks With blocks

* ## List item starting with a heading

  A paragraph below it.
* [x] Text before code block

  ```
  code block
  a second line
  ```
* ```
  Directly, a code block
  ```
