My Emanote cheatsheet

Archived

This cheatsheet documents Emanote, which I used as the generator for an earlier version of this site.

Uses standard Markdown.

Frontmatter

[… body unchanged …]

Local images

![Ama Dablam](../static/ama-dablam.jpeg)

Ama Dablam

Emoji

GitHub-style emoji shortcodes: see Complete list of github markdown emoji markup.

Example: :rocket: renders as 🚀.

Adding classes etc to fenced divs

Emanote’s fenced-div attribute syntax is documented in commonmark-hs attribute extension.

Example — applying an id and a class to a heading:

# Heading {#my-id .my-class}

And to a fenced div:

::: {.my-class}
content
:::