Skip to content

Latest commit

 

History

History
16 lines (13 loc) · 298 Bytes

File metadata and controls

16 lines (13 loc) · 298 Bytes

This plugin is adapted from the ProseMirror footnote example.

// schema
import { footnote, footnoteView } from '@aeaton/prosemirror-footnotes'

const nodes = {
  footnote,
  // ...
}

const nodeViews = {
  footnote: footnoteView,
  // ...
}