4.0.0 • Published 5 years ago

editron-script-editor v4.0.0

Weekly downloads
4
License
MIT
Repository
github
Last release
5 years ago

editron Script-Editor

Build Status

Add code editor for html and css.

npm i editron-script-editor --save

Setup

Add the bundled editor as a plugin

Use bundled versions of this editor

Add the editor after the core-modules and it will register automatically (paths depend on your build-setup)

<link rel="stylesheet" href="../node_modules/editron-script-editor/dist/editron-script-editor.css">

<!-- plugin editor -->
<script type="text/javascript" src="../node_modules/editron/dist/editron-modules.js"></script>
<script type="text/javascript" src="../node_modules/editron/dist/editron.js"></script>
<script type="text/javascript" src="../node_modules/editron-script-editor/dist/editron-script-editor.js"></script>

Webpack build

bundle the editor into your editron-application

Javascript

To use this editor within a webpack build, require the editor and add it to the editors list

const editronScriptEditor = require("editron-script-editor");
const editors = [
    editronScriptEditor
    ...otherEditors
];
const editron = new Editron(schema, data, { editors });

Styles

Optionally import the custom script-editor styles via sass

@import "editron-script-editor/editron-script-editor.scss";

or simply add the bundled css-file (path is depending on your build-setup)

<link rel="stylesheet" href="../node_modules/editron-script-editor/dist/editron-script-editor.css">

Schema

The editor will be added for a matching schema like

{
    "type": "string",
    "format": "css"
}
{
    "type": "string",
    "format": "htmlmixed"
}
{
    "type": "string",
    "format": "javascript"
}
4.0.0

5 years ago

3.0.0

6 years ago

2.0.0

6 years ago

1.1.2

7 years ago

1.1.1

7 years ago

1.1.0

7 years ago

1.0.3

7 years ago

1.0.2

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago