Skip to content

This package provides a footnote plugin for CKeditor5 integration in Neos CMS

License

Notifications You must be signed in to change notification settings

psmb/Psmb.Footnote

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

This package provides a footnote plugin for CKeditor5 integraion in Neos CMS.

footnotes

Installation

  1. Switch to using CKeditor 5
  2. composer require 'psmb/footnote'
  3. Enable footnote button on node properties that should support it, e.g.:
'Neos.NodeTypes:TextMixin':
  properties:
    text:
      ui:
        inline:
          editorOptions:
            formatting:
              footnote: true
  1. Add Fusion processor over the needed content collection, from which the footnotes should be gathered and rendered (or write your own Fusion or JS solution), e.g.:
prototype(Neos.Neos:PrimaryContent) {
  @process.footnotes = Psmb.Footnote:FootnoteProcessor
}
  1. Optionally add some styling to footnotes in backend, e.g.:
.neos-backend span[data-footnote]:after {
  content: '*';
  color: orange;
  border-bottom: orange solid 1px;
}