@jrsinclair/rehype-sidenotes
v0.0.5
Published
Takes HTML source containing GFM-style footnotes and converts them to sidenotes inlined into the page source.
Downloads
7
Maintainers
Readme
Rehype sidenotes
This plugin takes GFM or Multimarkdown-style footnotes and converts them into sidenotes. That is, it places them inline with the document content. This way (if you choose) you can float them into a margin.
Go from boring old footnote lists at the bottom of your page like this:
To exciting inline sidenotes like this:
Installation
npm i -D @jrsinclair/rehype-sidenotes
Usage
import rehype from "rehype";
import sidenotes from '@jrsinclair/rehype-sidenotes';
import { unified } from "unified";
unified()
.use(rehypeParse, { fragment: true })
.use(sidenotes)
.process(`<main>
<div>
<p>This is some text.</p>
<p>This is some text with a footnote ref.<sup><a id="user-content-fnref-1" href="#user-content-fn-1">1</a></sup></p>
</div>
<section data-footnotes="" class="footnotes">
<ol>
<li id="user-content-fn-1"><p>This is the footnote.</p></li>
</ol>
</section>
</main>`);
Input
<main>
<div>
<p>This is some text.</p>
<p>This is some text with a footnote ref.<sup><a id="user-content-fnref-1" href="#user-content-fn-1">1</a></sup></p>
</div>
<section data-footnotes="" class="footnotes">
<ol>
<li id="user-content-fn-1"><p>This is the footnote.</p></li>
</ol>
</section>
</main>
Output
<main>
<div>
<p>This is some text.</p>
<p>This is some text with a footnote ref.<sup><a id="user-content-fnref-1" href="#user-content-fn-1">1</a></sup></p>
<aside class="Sidenote" id="user-content-fn-1" role="doc-footnote">
<p><small class="Sidenote-small"><sup class="Sidenote-number">1 </sup>This is the footnote.</small></p>
</aside>
</div>
</main>
License
MIT, © James Sinclair.