Skip to content
Rebuilding

Mnemo is being rebuilt, so downloads are paused until the new app ships. We are porting from Avalonia to React and Photino and redrawing every screen, so the screenshots here are a mix of the old app and the new one.

Follow along
Browse docs

Blocks and the slash menu

Every block type, the / menu, and the markdown shortcuts that build structure as you type.

A note in Mnemo is a stack of blocks. Every line is a block with a type: a paragraph, a heading, a list item, an image. Writing is mostly just typing text blocks, and structure appears when you ask for it, either through the slash menu or by typing markdown.

The slash menu

Type / at the start of a block and a menu opens with everything the block can become. Keep typing to filter it: the search is forgiving about case and accents, heading one finds Heading 1, and the English names work even if the app is set to another language. Enter converts the block in place, arrow keys move the selection, and Escape closes the menu and leaves your text alone.

An empty block quietly reminds you this exists with the hint "Type '/' for commands".

The block types

BlockWhat it is for
TextThe default paragraph. Everything starts here.
Heading 1 to 4The skeleton of the note. Headings also feed the note's Index outline.
Bullet ListUnordered points.
Numbered ListOrdered points; the numbers renumber themselves when you move things.
To-doA checklist item with a real checkbox you can tick.
QuoteFor material in someone else's words, so your own stay distinct.
CodeMonospaced block for code or anything that needs exact characters.
DividerA horizontal rule for separating sections.
Two columnsSplits the row into two side-by-side stacks, with a draggable divider between them.
ImageA picture with an optional caption. See Images in notes.
EquationA block of LaTeX math, rendered in place.

Markdown shortcuts

If your fingers already speak markdown, you rarely need the menu. At the start of a text block, type the marker and a space:

TypeGet
# to ####Heading 1 to 4
-, *, or +Bullet list item
1. (any number)Numbered list item
[]To-do item
>Quote
```Code block
---Divider

For the list markers, the rest of the line survives the conversion, so you can write the thought first and promote it to a bullet after. The other shortcuts are stricter: they only fire on an otherwise empty line, so type those before the thought rather than after. The slash menu shows each block's markdown marker as a hint on the right, which is a decent way to learn them without trying.