Metadata-Version: 2.1
Name: lektor-tinymce
Version: 0.4
Summary: Lektor Plugin for TinyMCE Text Editor use.
Author: Grigory Vartanyan
Author-email: gvartanyan@spherical.pm
License: MIT
Keywords: lektor,plugin,tinymce,rich-text,editor,wysiwyg
Classifier: Framework :: Lektor
Classifier: Environment :: Plugins
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: lektor (<3.4,>=3.3.6)

# lektor-tinymce
Lektor plugin for editing with the [TinyMCE text editor](https://www.tiny.cloud/features).

## Installation
Install the plugin from pypi with one of the [standard ways](https://www.getlektor.com/docs/plugins/).

## Compatibility
This plugin uses non-api mechanisms in Lektor/Flask to inject its own code into admin jinja template.
Due to frequent change in Lektor admin backend code, each version of this plugin shall most likely be compatible with specific version of Lektor.
Currently it is compatible with Lektor [3.3.6](https://github.com/lektor/lektor/releases/tag/v3.3.6)

## API key
To add an API key, create the file `configs/tinymce.ini` in your lektor project folder with the following contents:

    [licence]
    api-key = 'YOUR_API_KEY_HERE'

## Tiny MCE setting
To pass additional arguments (such as a list of plugins) into [tinymce.init()](https://www.tiny.cloud/docs/configure/integration-and-setup/), just add the following contents to the file `configs/tinymce.ini` in your lektor project folder:
    [config]
    settings = 'YOUR_SETTINGS'

Here is the example of the settings string:
    [config]
    settings = "plugins: 'image link lists autoresize table', image_advtab: true,"

Note that this string is passed directly into tinymce.init(), so it must follow the given format.
Some plugins, such as image upload, may not be fully integrated with lektor by default.
## License
The plugin is distributed under the MIT license
