NoteMD Wiki
Ready
HeadingsUse # to ###### for heading levels.
# Title
## Subtitle
### Section
Text StylingCombine bold, italic, and inline code to structure text.
**bold**
*italic*
`inline code`
Lists and TasksCreate ordered, unordered, and task lists.
- Item
- [x] Done
- [ ] Todo
1. First
2. Second
Links and ImagesUse explicit labels and alt text for readability.
[NoteMD](https://example.com)
![Alt text](https://picsum.photos/200/120)
Code BlocksFence code with a language tag for highlighting.
```ts
function hello(name: string) {
  return `Hello ${name}`;
}
```
TablesGitHub Flavored Markdown supports pipe tables.
| Name | Value |
| --- | --- |
| Theme | Dark |
Smart Enter (List Continuation)Press Enter at end of list/quote lines to continue automatically. On an empty list item, Enter exits the list.
- first item
- second item

- [ ] todo item

> quoted line
Smart Ordered ListsNumbered lists are incremented automatically (1., 2., 3...).
1. First
2. Second
3. Third
Smart Code FenceOn a line with ```lang, Enter inserts a blank line and the closing fence.
```ts

```
Tab Indent / Shift+Tab OutdentIndent a line or full selection with Tab. Use Shift+Tab to remove indentation.
- parent
  - child
    - nested child
Auto PairingTyping (, [, {, quotes, or backticks automatically inserts the closing pair. Selected text is wrapped.
(value)
[link]
`code`
"quoted"
Keyboard ShortcutsUse editor shortcuts for common markdown wrappers.
Ctrl/Cmd+B => **bold**
Ctrl/Cmd+I => *italic*
Ctrl/Cmd+E => `inline code`
Ctrl/Cmd+K => [label](https://example.com)
Slash CommandsType / to open markdown snippet autocomplete.
/h1  /h2  /h3
/todo  /quote  /code
/table  /link  /image  /rule
Emoji AutocompleteType : to open emoji autocomplete.
:rocket: :smile: :check: :warning: :sparkles:
Completion NavigationNavigate autocomplete with keyboard and validate quickly.
ArrowUp / ArrowDown
Enter or Tab to insert
Escape to close
Best PracticesKeep headings consistent and write short paragraphs.
## One topic per section

Write concise, clear statements.