An open API service indexing awesome lists of open source software.

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

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
});
```