https://github.com/alterfan/cm-toolbar-addon
CodeMirror editor toolbar panel
https://github.com/alterfan/cm-toolbar-addon
codemirror codemirror-addon javascript
Last synced: 4 months ago
JSON representation
CodeMirror editor toolbar panel
- Host: GitHub
- URL: https://github.com/alterfan/cm-toolbar-addon
- Owner: alterfan
- Created: 2019-03-20T10:21:33.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2019-04-06T03:38:32.000Z (about 6 years ago)
- Last Synced: 2024-12-25T20:27:01.922Z (6 months ago)
- Topics: codemirror, codemirror-addon, javascript
- Language: JavaScript
- Size: 6.84 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# cm-addon-toolbar
CodeMirror action toollbar
-Visible on focus.
-Works whith multiple editor
# Usage
You will need include set of the stylesheet and script tags below in your document:
```html
```
Then set CodeMirror option "toolBar" : `true/false`
```javascript
var editor = CodeMirror("#editor", {
mode: html,
toolBar: true
});
```