95 lines
1.1 KiB
Markdown
95 lines
1.1 KiB
Markdown
# Notes and Markdown
|
|
|
|
NuQloud Notes is for plain text notes, checklists, drafts, and Markdown documents.
|
|
|
|
## Create a Note
|
|
|
|
1. Open Notes.
|
|
2. Create a new note.
|
|
3. Add a clear title.
|
|
4. Write your content.
|
|
5. Organize notes into categories or folders if available.
|
|
|
|
## Markdown Basics
|
|
|
|
Markdown is a simple way to format text.
|
|
|
|
### Headings
|
|
|
|
```markdown
|
|
# Main Heading
|
|
## Section Heading
|
|
### Smaller Heading
|
|
```
|
|
|
|
### Bold and Italic
|
|
|
|
```markdown
|
|
**bold text**
|
|
*italic text*
|
|
```
|
|
|
|
### Lists
|
|
|
|
```markdown
|
|
- Item one
|
|
- Item two
|
|
- Item three
|
|
```
|
|
|
|
### Numbered Lists
|
|
|
|
```markdown
|
|
1. First step
|
|
2. Second step
|
|
3. Third step
|
|
```
|
|
|
|
### Checklists
|
|
|
|
```markdown
|
|
- [ ] Not done
|
|
- [x] Done
|
|
```
|
|
|
|
### Links
|
|
|
|
```markdown
|
|
[NuQloud](https://example.com)
|
|
```
|
|
|
|
### Code
|
|
|
|
Inline code:
|
|
|
|
```markdown
|
|
Use `example` here.
|
|
```
|
|
|
|
Code block:
|
|
|
|
````markdown
|
|
```text
|
|
Paste text here.
|
|
```
|
|
````
|
|
|
|
## Good Uses for Notes
|
|
|
|
- Meeting notes.
|
|
- Personal checklists.
|
|
- Draft messages.
|
|
- Documentation drafts.
|
|
- Project notes.
|
|
- Markdown pages for Collective.
|
|
|
|
## Sharing Notes
|
|
|
|
If sharing is enabled:
|
|
|
|
1. Open the note.
|
|
2. Use sharing options.
|
|
3. Choose a user, group, or link.
|
|
4. Pick view or edit access.
|
|
|