Peter Mosses dd0b814bfd
Docs: Allow unlimited multi-level navigation (#1440)
* Remove `jekyll-default-layout` plugin

* Move docs/navigation-structure to docs/navigation

* Fix uses of line-nos in md files

* Update CHANGELOG.md

---------

Co-authored-by: Matt Wang <matt@matthewwang.me>
2024-08-20 22:50:47 +02:00

1.3 KiB

title parent nav_order
Lists UI Components 5

Lists

{: .no_toc }

Table of contents

{: .no_toc .text-delta }

  1. TOC {:toc}

Most lists can be rendered with pure Markdown.

Unordered list

- Item 1 - Item 2 - Item 3

or

  • Item 1
  • Item 2
  • Item 3
```markdown - Item 1 - Item 2 - Item 3

or

  • Item 1
  • Item 2
  • Item 3

## Ordered list

<div class="code-example" markdown="1">
1. Item 1
1. Item 2
1. Item 3
</div>
```markdown
1. Item 1
1. Item 2
1. Item 3

Task list

- [ ] hello, this is a todo item - [ ] hello, this is another todo item - [x] goodbye, this item is done
```markdown - [ ] hello, this is a todo item - [ ] hello, this is another todo item - [x] goodbye, this item is done ```

Definition list

Definition lists require HTML syntax and aren't supported with the GitHub Flavored Markdown compiler.

Name
Godzilla
Born
1952
Birthplace
Japan
Color
Green
```html
Name
Godzilla
Born
1952
Birthplace
Japan
Color
Green
```