Tool Guide

Markdown Syntax

Sections

Headers

Syntax

# H1 Header
## H2 Header
### H3 Header
#### H4 Header
##### H5 Header
###### H6 Header

Preview

Mermaid Diagrams

Sections

Flowchart

Syntax

```mermaid
flowchart TD
    A[Start] --> B{Decision?}
    B -->|Yes| C[Process A]
    B -->|No| D[Process B]
    C --> E[End]
    D --> E
```

Preview

Loading diagram...

LaTeX Math

Sections

Inline Math

Syntax

The quadratic formula is $x = \frac{-b \pm \sqrt{b^2 - 4ac}}{2a}$

Einstein's famous equation: $E = mc^2$

Inline math: $\pi \approx 3.14159$

Preview

The quadratic formula is $x = \frac{-b \pm \sqrt{b^2 - 4ac}}{2a}$ Einstein's famous equation: $E = mc^2$ Inline math: $\pi \approx 3.14159$

Keyboard Shortcuts

Use these keyboard shortcuts to speed up your editing:

Text Formatting

BoldCtrl + B
ItalicCtrl + I
CodeCtrl + `
HighlightCtrl + Shift + H
LinkCtrl + K
Code BlockCtrl + ~

Headers

Heading 1Ctrl + 1
Heading 2Ctrl + 2
Heading 3Ctrl + 3
Heading 4Ctrl + 4
Heading 5Ctrl + 5
Heading 6Ctrl + 6
BlockquoteCtrl + Q
Task ListCtrl + Shift + L
ImageCtrl + Shift + M

Extended Features

Definition ListCtrl + Shift + R
SubscriptCtrl + Shift + Y
SuperscriptCtrl + Shift + U

File Operations

Import FileCtrl + O
Export FileCtrl + Shift + S
SaveCtrl + S
FindCtrl + F

Editor Features

  • Line Numbers: Automatically displayed for easy navigation
  • Auto-completion: Markdown syntax suggestions as you type
  • Find & Replace: Use Ctrl+F to search within your document
  • Syntax Highlighting: Markdown, Mermaid, and LaTeX syntax are highlighted
  • Live Preview: See your rendered content in real-time
  • Synchronized Scrolling: Editor and preview panes scroll together

Toolbar Buttons

All formatting buttons in the toolbar have corresponding keyboard shortcuts and will insert the appropriate markdown syntax at your cursor position.