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


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
:::LINKS
- Emanote — https://emanote.srid.ca/
- Pandoc Markdown — https://pandoc.org/MANUAL.html#pandocs-markdown
- commonmark-hs attributes extension — https://github.com/jgm/commonmark-hs/blob/master/commonmark-extensions/test/attributes.md
- Obsidian callouts — https://help.obsidian.md/callouts
- GitHub emoji shortcodes — https://gist.github.com/rxaviers/7360908