Paragraphs & Blocks
Headings, lists, quotes, code blocks, formulas, callouts, and more
β±οΈ 8 minutes
Headings
Notta supports 6 heading levels:
| Level | Shortcut | Markdown Syntax |
|---|---|---|
| Heading 1 | Ctrl+1 | # Heading |
| Heading 2 | Ctrl+2 | ## Heading |
| Heading 3 | Ctrl+3 | ### Heading |
| Heading 4 | Ctrl+4 | #### Heading |
| Heading 5 | Ctrl+5 | ##### Heading |
| Heading 6 | Ctrl+6 | ###### Heading |
Adjust heading level:
- Menu β Paragraph β Promote Heading: Raise one level (e.g., H3 β H2)
- Menu β Paragraph β Demote Heading: Lower one level (e.g., H2 β H3)
Lists
Unordered List
Shortcut: Ctrl+Shift+8
- Item one
- Item two
- Sub-itemOrdered List
Shortcut: Ctrl+Shift+7
1. First item
2. Second item
3. Third itemTask List
Shortcut: Ctrl+Shift+9
- [ ] To-do item
- [x] Completed itemIn Normal mode, task lists display as clickable checkboxes.
List indentation:
- Increase indent:
Tab - Decrease indent:
Shift+Tab
List type conversion:
- Type a list prefix: Type a different list prefix at the beginning of a list item to auto-convert
- Slash commands: Type
/in a list and select the target list type
Block Quote
Shortcut: Ctrl+Shift+Q
> This is a block quote
> It can span multiple linesCode Block
Shortcut: Ctrl+Shift+K
```javascript
function hello() {
console.log('Hello, World!')
}
```Code block features:
- Language selection: Choose a programming language in the top-left corner for syntax highlighting
- Language suggestions: Auto-suggest matching languages as you type
- Copy code: One-click copy button in the top-right corner
- Maximize: Full-screen display for viewing long code
Math Formulas
Inline Formula
Shortcut: Ctrl+M
Syntax: $E = mc^2$
Block Formula
Shortcut: Ctrl+Shift+M
$$
\int_{-\infty}^{\infty} e^{-x^2} dx = \sqrt{\pi}
$$The formula editor provides a symbol panel, template panel, and live preview. See Math Formulas for details.
Callout Boxes
Callouts are color-coded alert boxes supporting 5 types:
| Type | Color | Purpose |
|---|---|---|
| Info | Blue | General information |
| Warning | Orange | Important notices |
| Error | Red | Critical information |
| Success | Green | Useful tips or suggestions |
| Tip | Purple | Helpful hints |
How to insert:
- Menu β Paragraph β Callout β Select type
- Slash commands: Type
/and select the callout type
Markdown syntax:
> [!NOTE]
> This is an info callout
> [!WARNING]
> This is a warningColumn Layout
Insert column layouts via slash commands to display content in multiple columns, ideal for comparisons or side-by-side layouts.
Horizontal Rule
Shortcut: Ctrl+Shift+-
Markdown syntax: --- or ***
Mermaid Diagrams
Notta supports Mermaid diagram syntax for embedding flowcharts, sequence diagrams, Gantt charts, and more:
```mermaid
graph TD
A[Start] --> B{Decision}
B -->|Yes| C[Execute]
B -->|No| D[End]
```Mermaid features:
- Real-time diagram rendering
- Fullscreen viewing support
- Multiple diagram types: flowcharts, sequence diagrams, Gantt charts, class diagrams, state diagrams, etc.
Next Steps
- Slash Commands β Quickly insert block elements
- Formatting β Inline text formatting
- Math Formulas β Detailed formula guide