Markdown formatting guide
Eden's notes support full markdown formatting. You can format text using the bubble menu (appears when you highlight text), the / menu (type / to open it), or by typing markdown syntax directly. This guide covers everything Eden supports.
Headings
Headings create structure and hierarchy in your notes.
Using the menus:
Highlight text and select a heading level from the bubble menu
Type
/and select Heading 1, Heading 2, or Heading 3
Using markdown syntax:
Type the # symbols at the start of a line, add a space, then type your heading text.
Text formatting
Bold
Make text stand out with bold formatting.
Menus: Highlight text and click the B button in the bubble menu, or type
/boldSyntax:
**bold text**or__bold text__Shortcut:
Cmd+B(Mac) orCtrl+B(Windows)
Italic
Emphasize text with italics.
Menus: Highlight text and click the I button in the bubble menu, or type
/italicSyntax:
*italic text*or_italic text_Shortcut:
Cmd+I(Mac) orCtrl+I(Windows)
Strikethrough
Cross out text to show deletions or completed items.
Menus: Highlight text and select strikethrough from the bubble menu
Syntax:
~~strikethrough text~~
Code (inline)
Format text as code for technical references or commands.
Menus: Highlight text and select Code from the bubble menu, or type
/codeSyntax: `
code text`Shortcut:
Cmd+E(Mac) orCtrl+E(Windows)
Combining formats
You can combine bold, italic, and other formats:
***bold and italic***renders as bold and italic**bold withcodeinside**renders as bold with `code` inside
Lists
Bulleted lists
Create unordered lists for items without a sequence.
Menus: Type
/and select Bullet listSyntax: Start a line with
*,-, or+followed by a space
Shortcut: Type
*or-followed by a space at the start of a line
Numbered lists
Create ordered lists for sequential items.
Menus: Type
/and select Numbered listSyntax: Start a line with
1.followed by a space (numbering continues automatically)
Shortcut: Type
1.followed by a space at the start of a line
Nested lists
Indent list items to create hierarchy.
Syntax: Add 2-4 spaces or a tab before the list marker
Task lists
Create checkable to-do items.
Menus: Type
/and select Task listSyntax:
- [ ]for unchecked,- [x]for checked
Links
Basic links
Link to external websites or other resources.
Syntax:
[link text](https://eden.so)
Auto-linking
Paste a URL directly and it becomes a clickable link:
Images
Embed images in your notes.
Menus: Type
/and select ImageDrag and drop: Drag and drop an image into the note
Quotes
Format text as a blockquote for citations or emphasis.
Menus: Type
/and select QuoteSyntax: Start a line with
>followed by a space
Code blocks
Display multiple lines of code with syntax highlighting.
Menus: Type
/and select Code blockSyntax: Wrap code in triple backticks
With syntax highlighting:
Specify the language after the opening backticks:
Shortcut: Type three backticks and press Enter
Horizontal rules
Add a visual divider between sections.
Menus: Type
/and select DividerSyntax: Three or more hyphens, asterisks, or underscores on their own line
Tables
Create structured data with rows and columns.
Menus: Type
/and select TableSyntax:
Alignment:
Use colons in the separator row to align columns:
:---= left aligned:---:= center aligned---:= right aligned
Escaping characters
If you want to display markdown syntax literally (like showing **bold** without making it bold), put a backslash before the character:
Pasting formatted text
When you paste text from other apps, Eden attempts to preserve basic formatting:
From markdown-compatible apps: Formatting pastes cleanly
From rich text editors: Basic formatting (bold, italic, headings, lists) usually converts correctly
From web pages: Results vary — you may need to clean up the formatting
If pasted content looks wrong, use Cmd+Shift+V (Mac) or Ctrl+Shift+V (Windows) to paste as plain text, then reformat using the menus.
Common questions
Can I undo formatting?
Yes. Use Cmd+Z (Mac) or Ctrl+Z (Windows) to undo any formatting change. You can also highlight formatted text and remove formatting using the bubble menu.
What happens if I type markdown syntax incorrectly?
Eden won't render it as formatted text — it'll just display the raw syntax. For example, **bold (missing the closing **) will show as literal text.
Can I mix markdown syntax with the visual menus?
Absolutely. Use whichever method is faster for you. The output is identical.
Can I use custom HTML in my notes?
Markdown supports some inline HTML, but Eden's editor is optimized for standard markdown. Stick to markdown syntax for the best experience.
What if I want to see the raw markdown?
Download the note (right-click → Download) and open it in any text editor to see the raw markdown source.
Thank you.
