An open API service indexing awesome lists of open source software.

https://github.com/paerck25/tui-editor-plugin-font-size

This is a plugin of TOAST UI Editor to font size editing text.
https://github.com/paerck25/tui-editor-plugin-font-size

editor font plugin size tui

Last synced: about 1 year ago
JSON representation

This is a plugin of TOAST UI Editor to font size editing text.

Awesome Lists containing this project

README

          

# tui-editor-plugin-font-size

This is a plugin of [TOAST UI Editor](https://github.com/nhn/tui.editor/tree/master/apps/editor) to font size editing text.

based on [@toast-ui/editor-plugin-color-syntax](https://github.com/nhn/tui.editor/tree/master/plugins/color-syntax)

![font-size](./readme_img.png)

### Install

```sh
$ npm install tui-editor-plugin-font-size

or

$ yarn add tui-editor-plugin-font-size
```

### Usage

```js
import Editor from "@toast-ui/editor";
import fontSize from "tui-editor-plugin-font-size";
import "tui-editor-plugin-font-size/dist/tui-editor-plugin-font-size.css";

const editor = new Editor({
// ...
plugins: [fontSize],
});
```