@valano/change-font-size
v1.0.1
Published
Change font size inline tool for Editor.js
Maintainers
Readme
ChangeFontSize Tool
Change font size for the Editor.js. This version is CommonJS compatible.
Installation
Install via NPM
Get the package
npm i --save-dev @valano/change-font-sizeInclude module at your application
const ChangeFontSize = require('@valano/change-font-size');Download to your project's source dir
- Upload folder
distfrom repository - Add
dist/editor.change-font-size.jsfile to your page.
Require this script on a page with Editor.js.
<script src="..."></script>Usage
Add a new Tool to the tools property of the Editor.js initial config.
var editor = EditorJS({
...
tools: {
...
plus10percent: {
class: ChangeFontSize,
},
plus20percent: {
class: ChangeFontSize,
config: {
cssClass: "plus20pc",
buttonText: "20%"
}
},
},
...
});Config Params
| Param | Type | Description |
| --------- | -------- | -----------------|
| cssClass | string | This class will be added to the tag span. |
| buttonText | string | Text for toolbar. |
| buttonIcon | string | Content for the button. For example svg. |
Output data
Marked text will be wrapped with a span tag with class.
{
"type" : "text",
"data" : {
"text" : "Create a directory for your module, enter it and run <span class=\"plus20pc\">npm init</span> command."
}
}