1.0.0 • Published 7 years ago

tinymce-line-height-plugin v1.0.0

Weekly downloads
93
License
ISC
Repository
github
Last release
7 years ago

TinyMCE - Plugin - line-height Formatter

A very basic, based on the font-size implementation in TinyMCE, plugin to format a element with a given line-height.

Requirements

This was written for TinyMCE version 4.1.5 (2014-09-09)

https://github.com/tinymce/tinymce/

Setup

Copy the plugin into your TinyMCE plugin folder.

Your TinyMCE init() method should contain the following value:

tinymce.init({
    ...
    plugins: 'lineheight',
    toolbar: 'lineheightselect' 
    ...
});

Also you could configure the different heights like that:

tinymce.init({
    ...
    lineheight_formats: "8pt 9pt 10pt 11pt 12pt 14pt 16pt 18pt 20pt 22pt 24pt 26pt 36pt",
    ...
});