psmb / footnote
Footnotes CKeditor5 plugin for Neos CMS
Package info
Language:JavaScript
Type:neos-package
pkg:composer/psmb/footnote
0.3
2019-11-26 12:48 UTC
Requires
- neos/neos: *
This package is auto-updated.
Last update: 2026-06-09 11:25:26 UTC
README
This package provides a footnote plugin for CKeditor5 integraion in Neos CMS.
Installation
- Switch to using CKeditor 5
composer require 'psmb/footnote'- Enable footnote button on node properties that should support it, e.g.:
'Neos.NodeTypes:TextMixin':
properties:
text:
ui:
inline:
editorOptions:
formatting:
footnote: true
- 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
}
- Optionally add some styling to footnotes in backend, e.g.:
.neos-backend span[data-footnote]:after {
content: '*';
color: orange;
border-bottom: orange solid 1px;
}
