@tomaitken/ckeditor5-footnotes ============================== This package was created by the [ckeditor5-package-generator](https://www.npmjs.com/package/ckeditor5-package-generator) package. It is essentially lifted from the [ForumMagnum Footnote Plugin](https://github.com/ForumMagnum/ForumMagnum/tree/master/public/lesswrong-editor/src/ckeditor5-footnote/src) with only minor modifications. All intellectual credit should go to the developers of this plugin. ## Table of contents * [Usage](#usage) * [Developing the package](#developing-the-package) * [Available scripts](#available-scripts) * [`start`](#start) * [`test`](#test) * [`lint`](#lint) * [`stylelint`](#stylelint) * [`build:dist`](#builddist) * [`translations:collect`](#translationscollect) * [`translations:download`](#translationsdownload) * [`translations:upload`](#translationsupload) * [`ts:build` and `ts:clear`](#tsbuild-and-tsclear) * [License](#license) ## Usage Install via NPM / yarn. Then import code and CSS: ``` import '@tomaitken/ckeditor5-footnotes/index.css'; import { Footnotes } from '@tomaitken/ckeditor5-footnotes'; ``` Then add this `Footnotes` import to the plugins list and the string `'footnote'` to the toolbar buttons. ## Developing the package To read about the CKEditor 5 Framework, visit the [CKEditor 5 Framework documentation](https://ckeditor.com/docs/ckeditor5/latest/framework/index.html). ## Available scripts NPM scripts are a convenient way to provide commands in a project. They are defined in the `package.json` file and shared with people contributing to the project. It ensures developers use the same command with the same options (flags). All the scripts can be executed by running `yarn run