@aeaton/prosemirror-footnotes
v2.0.2
Published
This plugin is adapted from [the ProseMirror footnote example](https://prosemirror.net/examples/footnote/).
Downloads
1,314
Readme
This plugin is adapted from the ProseMirror footnote example.
// schema
import { footnote, footnoteView } from '@aeaton/prosemirror-footnotes'
const nodes = {
footnote,
// ...
}
const nodeViews = {
footnote: footnoteView,
// ...
}