Working with Notes
Note Cargo is a simply collection of Markdown files (.md) that can be linked to each other. So just write anything your want, and add formatting if needed later on.
You can use the Mode Switch on the right bottom, to change between Viewer and Code editor.

Text Formatting
Basic Formatting
Bold text:
**this text will be bold**
Italic text:
*this text will be italics*
Strikethrough:
~~this text will be strike through~~
Inline code:
Use backticks for `CTRL+A` inline code
Preview:

Headings
Use hash symbols for different heading levels:
# Heading 1
## Heading 2
### Heading 3
#### Heading 4
Preview:

Checkboxes
Basic Checkboxes
- [ ] Unchecked task
- [x] Completed task
Advanced Checkboxes
Checkboxes with formatting and nesting:
- [x] **Bold checkbox** with *italic* and ~~strikethrough~~ text
- [ ] Regular task
- [x] Parent task
- [x] Nested subtask
- [ ] Another subtask
- [ ] Deep nested (3rd level not yet supported)
Preview:

Lists
Unordered Lists
- Item 1
- Item 1
- Item 2
- Nested Item 1
- 3rd level nested item not yet supported
- Item 3
Preview:

Links
Regular Links
Just paste link also work, but you can warp it in standard Markdown link:Normal URL: https://x.com/huedaya
With Markdown format:
[Link with text](https://example.com)
Wiki-style Links
Note Cargo supports Obsidian-style linking:
[[link-to-another-note]]
[[link-to-non-exist-note]]
[[link-to-note/inside-folder]]
Preview:

Images
Standard Markdown Images

Obsidian-style Images
![[https://example.com/image.png]]
![[local-image.png]]
Local Private Images
Check Upload Image feature for further detail

Code Blocks
Language-specific Code
```javascript
function hello() {
console.log("Hello World!");
}
```
Generic Code Blocks
```
Generic code block without language specification
```
Preview:

Line Breaks
Force line breaks with HTML tags:
Line one<br/>
Line two<br/><br/>
Line three with double break
<br/>
for explicit line breaks.
Horizontal Divider
Create dividers with three or more dashes:
---
Text above the line
---
Text below the line
Markdown Meta
You can put special meta data that show in the begining of page.
---
title: My Note Title
tags:
- project-management
- github-action
- with space?
---
Preview:
