Skip to content

Latest commit

 

History

History

footnotes

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

This plugin is adapted from the ProseMirror footnote example.

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

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

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