mirror of
https://github.com/thangisme/notes.git
synced 2024-11-06 20:17:26 -05:00
Add docs for lists
This commit is contained in:
parent
3730de18ea
commit
45eea0efb6
98
docs/ui-components/lists.md
Normal file
98
docs/ui-components/lists.md
Normal file
@ -0,0 +1,98 @@
|
|||||||
|
---
|
||||||
|
layout: default
|
||||||
|
title: Lists
|
||||||
|
parent: UI Components
|
||||||
|
nav_order: 5
|
||||||
|
---
|
||||||
|
|
||||||
|
# Lists
|
||||||
|
{:.no_toc}
|
||||||
|
|
||||||
|
## Table of contents
|
||||||
|
{: .no_toc .text-delta }
|
||||||
|
|
||||||
|
1. TOC
|
||||||
|
{:toc}
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
Most lists can be rendered with pure markdown...
|
||||||
|
|
||||||
|
## Unordered list
|
||||||
|
<div class="code-example" markdown="1">
|
||||||
|
- Item 1
|
||||||
|
- Item 2
|
||||||
|
- Item 3
|
||||||
|
|
||||||
|
_or_
|
||||||
|
|
||||||
|
* Item 1
|
||||||
|
* Item 2
|
||||||
|
* Item 3
|
||||||
|
</div>
|
||||||
|
```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
|
||||||
|
|
||||||
|
<div class="code-example" markdown="1">
|
||||||
|
- [ ] hello, this is a todo item
|
||||||
|
- [ ] hello, this is another todo item
|
||||||
|
- [x] goodbye, this item is done
|
||||||
|
</div>
|
||||||
|
```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.
|
||||||
|
|
||||||
|
<div class="code-example" markdown="1">
|
||||||
|
<dl>
|
||||||
|
<dt>Name</dt>
|
||||||
|
<dd>Godzilla</dd>
|
||||||
|
<dt>Born</dt>
|
||||||
|
<dd>1952</dd>
|
||||||
|
<dt>Birthplace</dt>
|
||||||
|
<dd>Japan</dd>
|
||||||
|
<dt>Color</dt>
|
||||||
|
<dd>Green</dd>
|
||||||
|
</dl>
|
||||||
|
</div>
|
||||||
|
```html
|
||||||
|
<dl>
|
||||||
|
<dt>Name</dt>
|
||||||
|
<dd>Godzilla</dd>
|
||||||
|
<dt>Born</dt>
|
||||||
|
<dd>1952</dd>
|
||||||
|
<dt>Birthplace</dt>
|
||||||
|
<dd>Japan</dd>
|
||||||
|
<dt>Color</dt>
|
||||||
|
<dd>Green</dd>
|
||||||
|
</dl>
|
||||||
|
```
|
||||||
|
|
Loading…
Reference in New Issue
Block a user