Note Cargo

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.

Note Cargo Screenshot

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:

Note Cargo Screenshot

Headings

Use hash symbols for different heading levels:

# Heading 1
## Heading 2
### Heading 3
#### Heading 4

Preview:

Note Cargo Screenshot

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:

Note Cargo Screenshot

Lists

Unordered Lists

- Item 1
- Item 1
- Item 2
 - Nested Item 1
  - 3rd level nested item not yet supported
- Item 3

Preview:

Note Cargo Screenshot

Images

Standard Markdown Images

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

Obsidian-style Images

![[https://example.com/image.png]]
![[local-image.png]]

Local Private Images

Check Upload Image feature for further detail

![Local image](http://localhost:8000/image.php?path=/filename.png)

Code Blocks

Language-specific Code

```javascript
function hello() {
    console.log("Hello World!");
}
```

Generic Code Blocks

```
Generic code block without language specification
```

Preview:

Note Cargo Screenshot

Line Breaks

Force line breaks with HTML tags:

Line one<br/>
Line two<br/><br/>
Line three with double break
💡 Note: Markdown automatically converts single line breaks within paragraphs to spaces. Use <br/> for explicit line breaks.

Hashtags

Use hashtags for quick tagging (not inside code blocks):

#hashtag #another-tag #tag_with_underscore

Preview:

Note Cargo Screenshot
⚠️ Note: Hashtag only allowed to use number, letter, underscode, and dash. When clicked it will go to search page.

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:

Note Cargo Screenshot