...
...
You may apply plugins provided by SynapEditor to use extended features.
...
| Excerpt |
|---|
Loading Plugins| Code Block |
|---|
| <!-- Note) Plugin files shall be writtencreated under SynapEditor file.-->
<!-- SynapEditor File-->
<link rel="stylesheet" href="../synapeditor.min.css">
<script src="../synapeditor.min.js"></script>
<!-- Plugin File-->
<link rel="stylesheet" href="../plugins/webAccessibilityChecker/webAccessibilityChecker.min.css">
<script src="../plugins/webAccessibilityChecker/webAccessibilityChecker.min.js"></script> |
Generating Plugin UI| Code Block |
|---|
| <script>
new SynapEditor('ID of HTML element to initialize the Editor', {
//...
'editor.toolbar': [
//...
'webAccessibilityChecker' //If you wish to expose the buttons provided by a plugin, use the name provided by the plugin for the name of UI, just as the exsiting Editor configurations.
//...
]
//...
});
</script> |
|
Provided Plugins
...
How to
...
Create a Custom Plugin
...