Markdown
Zxbase leverages the power of a lightweight markup language called Markdown to help you create neat notes and To-Do lists.
We use the GitHub Flavored dialect of Markdown.
Example
To add a new note, go to Vault → Notes. Tap ‘Create a note’. Set a title to ‘Example of note’.
Add a simple to-do list, including a hyperlink.
---
# To-do
- [x] Get packaging tape.
- [x] [Get markers.](https://example.com)
- [ ] Renew passports.
Add tasks formatted as a table.
---
# Tasks
| Status | Task | Due |
| --- | --- | --- |
| ✔️ | Get packaging tape. | Aug 1 |
| ✔️ | Get markers. | Aug 3 |
| 🛑 | Renew passports. | TBD |
Add enumerated list.
---
# Steps
1. Get packaging tape.
2. [Get markers.](https://example.com)
3. Renew passports.
Save and check the rendered result.
Happy note-taking!