Octarine
Editing and Formatting

Formatting

Markdown syntax and text formatting options

Formatting

Octarine gives you several ways to format your text. If you're a Markdown pro, you can use the syntax directly. But if you prefer a more visual approach, there are shortcuts built right in.

Quick ways to format:

  • Slash Command — Press / to open a searchable dropdown with all formatting options, then hit Enter to apply what you need
  • Bubble Menu — Select any text and a floating toolbar will appear right above it, giving you quick access to common formatting options

You can customize the default highlight color in Settings → Editor → Default Highlight Color. This sets the color applied when you use the Cmd/Ctrl + Shift + H keyboard shortcut.


Here's a complete reference for all the Markdown syntax Octarine supports, along with keyboard shortcuts to speed things up:

Formatting TypeMarkdown SyntaxKeyboard Shortcut
Heading 1# textCmd/Ctrl + Option/Alt + 1
Heading 2## textCmd/Ctrl + Option/Alt + 2
Heading 3### textCmd/Ctrl + Option/Alt + 3
Bold**text**Cmd/Ctrl + B
Italics*text*Cmd/Ctrl + I
Quote> textNone
Inline Code`text`Cmd/Ctrl + E
Strikethrough~~text~~Cmd/Ctrl + Shift + S
Underline~text~Cmd/Ctrl + U
Bullet List- text or * textCmd/Ctrl + Shift + 8
Numbered List1. textCmd/Ctrl + Shift + 7
Task List[] textCmd/Ctrl + Shift + 9
ParagraphtextCmd/Ctrl + Shift + 0
Web Link*[Link](http://example.com)None
Web Image*![Image](http://example.com/image.png)None
Codeblock``` textCmd/Ctrl + Option/Alt + C
Divider—-None

Note: Web links and images need to be typed in their complete Markdown syntax ending with ) to be parsed automatically. If you type the brackets []() first and then try to fill them in, it won't render properly—so make sure to complete the syntax in one go.