Search...Search plugins and themes...
⌘K
Sign in
  • Get started
  • Download
  • Pricing
  • Enterprise
  • Account
  • Obsidian
  • Overview
  • Sync
  • Publish
  • Canvas
  • Mobile
  • Web Clipper
  • CLI
  • Learn
  • Help
  • Developers
  • Changelog
  • About
  • Roadmap
  • Blog
  • Resources
  • System status
  • License overview
  • Terms of service
  • Privacy policy
  • Security
  • Community
  • Plugins
  • Themes
  • Discord
  • Forum / 中文论坛
  • Merch store
  • Brand guidelines
Follow us
DiscordTwitterBlueskyThreadsMastodonYouTubeGitHub
© 2026 Obsidian

Side-Notes

Fried FishsticksFried Fishsticks2k downloads

Adds ability to create Tufte-style sidenotes in Obsidian with incrementing numbers.

Add to Obsidian
Side-Notes screenshot
  • Overview
  • Scorecard
  • Updates36

I first discovered sidenotes, at least in a conscious way, on Gwern.net which was referencing Edward Tufte's conventions.

Sidenotes Basics Basic sidenote capabilities demonstrated

Neumorphic badges An optional style that highlights references.

Editing sidenotes Editing a sidenote in the margin, adding a new sidenote, then adding a new margin note

Download

  • Download: Side-Notes from Community Plugins

Features

Sidenotes

Numbered notes displayed in the margin instead of at the bottom of the note. Run the Insert sidenote command to start one.

  • Two formats, chosen in settings:
    • HTML spans: <span class="sidenote">text</span> — I use these because it was simple to make them work in my web-published notes too.
    • Markdown footnotes: This is a sentence[^1].
  • Visible in Editing and Reading modes. Source mode is left alone: it shows the bare markdown.
  • Editable in the margin. Click a sidenote, edit it, and press ENTER to save; SHIFT+ENTER adds a new line (HTML format only — Markdown footnote definitions are single-line). Editing in Reading mode is optional and off by default.
  • Supports internal and external links, plus basic Markdown formatting: bold, italic, and inline code.
  • Per-note margin override. Pin an individual sidenote to the margin opposite the global "Sidenote position" setting with the Insert sidenote (opposite margin) command, or by hand:
    • HTML: add a right or left class, e.g. <span class="sidenote right">text</span>
    • Footnotes: append -r or -l to the footnote ID, e.g. [^3-r]

Margin notes

Un-numbered notes in the margin, for asides that don't need a reference number. In Editing mode a small marker shows where the note is anchored; it can also be configured to open as a popup instead. Click to edit.

  • Markdown footnotes: [^mn-1] or [^mn-kitchen]
  • HTML: <span class="sidenote margin-note">
  • Per-note margin override, same as sidenotes: use the Insert margin note (opposite margin) command, or add a right/left class (HTML) or -r/-l suffix (footnotes, composes with the mn- prefix, e.g. [^mn-2-l]).

Numbering

  • Superscript reference numbers are added to the text and increment automatically.
  • Displayed as Arabic numerals, Roman numerals, letters, or hidden entirely.
  • Styled plain or as badges (including a neumorphic style) to make references easier to spot.
  • Optionally restart numbering at each heading.

Responsive layout

  • Sidenotes sit in the left or right margin, anchored to the referencing line.
  • Font size shrinks as horizontal space gets tighter; below configurable breakpoints the margin switches to a compact layout and then hides entirely.
  • Collision avoidance keeps notes from overlapping when several land close together.
  • Width, gaps, and page offset are all adjustable, as are font size, line height, text alignment, and colors.

PDF export

Works with both HTML sidenotes and footnotes (experimental). Notes are laid out in the margin rather than inline, and margin notes are dropped from the endnote list at the end of the document.

Goal Features

  • Optional background color to sidenotes
  • Command: Re-sequence footnote numbers. They have a habit of getting out of order once you insert new ones. ✅ 2026-02-27
  • Option to have non-numbered sidenotes - aka "margin notes" ✅ 2026-02-26
  • Add scaling option for margin note icon in text and in margin ✅ 2026-03-02
  • Option for hidden margin notes: ✅ 2026-03-02
  • Per-note override to place an individual sidenote/margin note in the margin opposite the global setting ✅ 2026-08-01

Maybe Features

Suggestions that have not been implemented and are not yet being actively developed.

  • Badge style for margin notes
  • Option for style templates for multiple sidenotes types - e.g. one type has a background color, another does not. This seems more easily implemented if using HTML sidenotes.
  • Highlight the referencing sentence in the main note text when hovering over a sidenote
  • Command: Switch between Footnotes visible <-> Sidenotes visible

Setup

  1. If copying manually from this repo, download the plugin from the Releases page.
  2. Add the plugin files to your Obsidian vault. Copy the contents into YOUR-VAULT/.obsidian/plugins/sidenotes.
  3. If copying manually, restart Obsidian and then enable the plugin in Settings.
  4. Configure the settings how you like:
    • Choose sidenote format:
      • Footnotes: Traditional Markdown footnotes will become sidenotes
        • Hide footnotes: Choose if you want to hide the origina footnotes at the bottom of the note
        • Hide footnote numbers: Hide the original Markdown reference numbers in the note text - e.g. this: [1]
      • HTML: uses <span> elements to format the sidenotes. I originally designed using this because it was an easy way for me to set up CSS styles in Obsidian as well as CSS styles in my web-published notes
    • Number style: Try 'neumorphic badge' for numbers that are more visually identifiable
    • Width & Spacing:
      • Minimum sidenote width
      • Maximum sidenote width
      • Minimum gap between sidenote and text
      • Minimum gap between sidenote and editor edge
    • Page offset factor: Make some room for the sidenotes if you want. This shifts the note text over (only affects notes that have sidenotes)

Use

Run the command Insert Sidenote.

If using HTML

It will insert this:

<span class="sidenote">{cursor}</span>

Click on the sidenote to edit it in the margin. Press ENTER to update. Press SHIFT+ENTER to add a new line in the sidenote.

If using footnotes

it will insert [^1] and add a footnote at the bottom of the document. Press ENTER to update. Using SHIFT+ENTER will not work to add a new line in a footnote because of how footnotes are formatted in Markdown.

Opposite margin

By default, every sidenote and margin note lands in whichever margin the Sidenote position setting points to. To pin a single note to the other margin instead, run Insert sidenote (opposite margin) or Insert margin note (opposite margin) from the command palette. These insert the same markup as the regular commands, plus a side marker:

  • HTML: a right or left class is added, e.g. <span class="sidenote right">{cursor}</span>
  • Footnotes: a -r or -l suffix is added to the footnote ID, e.g. [^3-r] (composes with margin notes: [^mn-2-l])

Web Publishing

I use Digital Garden to publish a subset of my notes to a website. In the framework Digital Garden has set up, a CSS file called custom-styles.css is where one adds any CSS to modify the default styles.

The snippet of CSS I've been using for web publishing is located in /digital-garden/custom-styles.css.

Known issues

  • Feature "Restart numbering after each heading" does not work currently.
  • HTML sidenotes, in Reading Mode? - When pressing enter to update the last sidenote, it jumps up about 1 page
  • Changing style settings causes Editing mode sidenotes to disappear until restart

Alternatives and inspirations

  • FelixHT's Obsidian Sidenotes Plugin - hasn't been updated in a while - one user reported it doesn't fully function any longer but I haven't tested it. I did build some of the functionality in my plugin based on this.
  • SideNote Plugin allows you to add comments to a piece of text, and this is viewable in the side panel.
  • Cornell Notes Learning Vault from TfTHacker
  • crnkv/obsidian-sidenote-auto-adjust-module (forum post)
  • Collapsible Sidenotes using a CSS trick
  • Sidenotes Using CSS also
  • A sidenote solution similar to Tufte CSS
  • Obsidian-sidenote-callout - I did not use a custom callout like this because I wanted the sidenotes to also be publishable.
  • Tufte style sidenotes
  • Collapsible inline notes and sidenotes

Support

HealthExcellent
ReviewCaution
About
Add numbered sidenotes and un-numbered margin notes anchored to lines, displaying references in the page margin instead of at the bottom of the note. Edit notes directly in the margin (visible in Reading and Editing modes), choose HTML-span or Markdown-footnote formats, include links and basic Markdown formatting, and keep numbering responsive and styled for clear reference. Note: This plugin utilizes the extra margin space in Obsidian and, therefore, does not work in mobile. Any sidenotes added to a document are still there - just not displaying as sidenotes in the mobile context.
AnnotationEditing
Details
Current version
0.4.7
Last updated
13 hours ago
Created
6 months ago
Updates
36 releases
Downloads
2k
Compatible with
Obsidian 1.10.0+
Platforms
Desktop, Mobile
License
MIT
Report bugRequest featureReport plugin
Sponsor
Buy Me a Coffee
Author
Fried FishsticksFried Fishsticksfriedfishsticks
GitHubcparsell
  1. Community
  2. Plugins
  3. Annotation
  4. Side-Notes

Related plugins

Advanced Tables

Improved table navigation, formatting, and manipulation.

Meta Bind

Make your notes interactive with inline input fields, metadata displays, and buttons.

Outliner

Work with your lists like in Workflowy or Roam Research.

Admonition

Admonition block-styled content.

Creases

Tools for effectively folding Markdown sections.

Dragger

Drag and drop any block (paragraphs, headings, lists, etc.) to rearrange content like Notion.

Various Complements

Complete words similar to auto-completion in an IDE.

LanguageTool Integration

advanced spell/grammar checks with the help of language-tool.

MetaEdit

Manage your metadata.

Thino

Quickly capture memos and display them in the sidebar with a heatmap. (Closed source)