medium-editor library for Ember Apps.
README and docs are under reconstruction for now. Preparing it for v1.0 release!
With ember
:
ember install ember-medium-editor
With npm
:
npm install --save-dev ember-medium-editor
With yarn
:
yarn add --dev ember-medium-editor
// ember-cli-build.js
let app = new EmberApp(defaults, {
mediumEditor: {
/**
* If true will include only JS in the build.
*
* @type Boolean
* @default false
*/
excludeStyles: false,
/**
* List of themes: https://github.com/yabwe/medium-editor/tree/master/dist/css/themes
*
* @type String
* @default 'default'
*/
theme: 'default'
}
});
If you encounter any issue please report it here.