cli + tui to publish to leaflet (wip) & manage tasks, notes & watch/read lists 馃崈
charm leaflet readability golang

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
[Link text](https://example.com)
[Reference link][ref]

[ref]: https://example.com

Images#

![Alt text](path/to/image.png)
![Remote image](https://example.com/image.png)

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#

---
***
___