Skip to content

Markdown Support

Learn about the Markdown syntax supported by Moire

Apple Notes’ rich text format is complex. Moire supports converting it to a basic set of Markdown syntax. Here is the feature list.

note-example

SyntaxResult
**Bold**Bold
*Italic*Italic
~~Strikethrough~~Strikethrough
## Level 2 Heading
### Level 3 Heading

Only H2 and H3 are supported, corresponding to Notes’ Title and Subtitle. This is because Subheading in Notes is actually the same size as the body text and cannot be effectively distinguished.

[Link Text](https://example.com)

Result: Link Text

Unordered List:

- Item 1
- Item 2
- Sub-item 2.1

Ordered List:

1. Step One
2. Step Two
3. Step Three

Task List:

* [ ] TODO 1
* [x] TODO 1.1
* [ ] TODO 2
* [ ] TODO 2.1

Monostyled text in Apple Notes will be converted to Markdown code blocks.

a = 5
b = 10
a, b = b, a
print(f"a is now {a}, b is now {b}")
> This is a quote
> Used to emphasize important content

Result:

This is a quote Used to emphasize important content

![Image Description](image-url.png)

Preview:

Header 1Header 2
Content 1Content 2

Bold, italic, and other styles may be lost if there are leading or trailing spaces in titles or body text.

iOS and macOS export styles differently. iOS loses styles in titles and generates more empty line breaks (though usually not visible on the page).

On macOS, the first line of a note is always treated as a Bold Level 2 Heading by the Shortcuts API, regardless of its original formatting.

Use basic Markdown syntax and avoid relying on advanced features.

Lists are easier to read than large blocks of text. Benefits:

  • Concise and clear
  • Easy to scan

A picture is worth a thousand words, but don’t overdo it (limit 1).

Learn more about image upload mechanisms and limitations.