Editor
How to use the various features of the Able Editor.
Last updated
How to use the various features of the Able Editor.
Last updated
Most options can generally be found in the options sidebar which can be opened by clicking the ••• button at the top right of the editor. This can also be opened using the shortcut Ctrl/⌘ + O.
The following shortcuts can be used with the Able editor.
You can switch the editor to Markdown mode using Ctrl/⌘ + M or by enabling markdown mode from the options sidebar. This will allow you to edit your posts in more granular detail or paste pre-existing markdown into the editor.
The editor will remember your preference, so if you prefer to use markdown mode it will stay in this state until you change back.
You can write inline math equations or math equation blocks in your posts. We use KaTeX to render them. To write an inline equation just enclose your text within single dollar signs followed by a space. So typing something like $-b \pm \sqrt{b^2 - 4ac} \over 2a$
into the editor followed by a space will render an inline equation.
For block equations, just enclose your text in double dollar signs, so typing $$-b \pm \sqrt{b^2 - 4ac} \over 2a$$
will give you a block-width equation like the one below.
Action
Shortcut
Save
Ctrl/⌘ + S
Toggle Options sidebar
Ctrl/⌘ + O
Toggle Markdown
Ctrl/⌘ + M
H1
# followed by a space on a new line
H2
## followed by a space on a new line
H3
### followed by a space on a new line
Bold text
Ctrl/⌘ + B
Italic text
Ctrl/⌘ + I
Link text
Ctrl/⌘ + K
Inline code
Enclose text in backticks `
Code block
``` on a new line
Inline math formula
Enclose text in single $ then tap space
Math formula block
Enclose text in double $$
Ordered list
1. followed by a space on a new line
Unordered list
- or * followed by a space on a new line
Blockquote
> followed by a space on a new line
Horizontal rule
=== on a new line (we’re working on ---)