cli + tui to publish to leaflet (wip) & manage tasks, notes & watch/read lists 馃崈
charm
leaflet
readability
golang
title: Markdown Support sidebar_label: Markdown description: Reference for GitHub-Flavored Markdown features. sidebar_position: 6#
Markdown Support#
Noteleaf notes support full GitHub-Flavored Markdown:
Headers#
# Level 1
## Level 2
### Level 3
Text Formatting#
**bold**
*italic*
***bold and italic***
~~strikethrough~~
`inline code`
Lists#
- Unordered item
- Another item
- Nested item
1. Ordered item
2. Second item
1. Nested ordered
Task Lists#
- [x] Completed task
- [ ] Pending task
- [ ] Another pending
Links#
[Link text](https://example.com)
[Reference link][ref]
[ref]: https://example.com
Images#


Code Blocks#
```python
def hello():
print("Hello, world!")
```
```javascript
const greet = () => console.log("Hello!");
```
Tables#
| Header 1 | Header 2 |
|----------|----------|
| Cell 1 | Cell 2 |
| Cell 3 | Cell 4 |
Blockquotes#
> This is a quote
> spanning multiple lines
>
> With multiple paragraphs
Horizontal Rules#
---
***
___