Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/piranga8/summernote-case-converter
Case converter plugin for summernote WYSIWYG editor
https://github.com/piranga8/summernote-case-converter
Last synced: 3 months ago
JSON representation
Case converter plugin for summernote WYSIWYG editor
- Host: GitHub
- URL: https://github.com/piranga8/summernote-case-converter
- Owner: piranga8
- License: gpl-3.0
- Created: 2019-07-08T19:24:23.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-07-08T19:27:48.000Z (over 5 years ago)
- Last Synced: 2024-02-15T05:33:08.589Z (9 months ago)
- Language: JavaScript
- Size: 17.6 KB
- Stars: 0
- Watchers: 0
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-summernote - summernote-case-converter
README
# summernote-case-converter
Case converter plugin for the [Summernote](https://github.com/summernote/summernote/) WYSIWYG editor.Adds a button to the Toolbar with a dropdown in the Toolbar that allows case converting in any text in the editor.
Functions of this plugin:
- Case convert between upper, lower, sentence and title case.### Installation
#### 1. Include JS
Include the following code after including Summernote:
```html
```
#### 2. Supported languages
Currently available in English and Spanish!#### 3. Summernote options
Finally, customize the Summernote Toolbar.```javascript
$(document).ready(function() {
$('#summernote').summernote({
toolbar:[
['custom',['caseConverter']], // The button
['style',['style']],
['font',['bold','italic','underline','clear']],
['fontname',['fontname']],
['color',['color']],
['para',['ul','ol','paragraph']],
['height',['height']],
['table',['table']],
['insert',['media','link','hr']],
['view',['fullscreen','codeview']],
['help',['help']]
]
});
});
```#### 4. Check out my Github page.
- [Piranga8](https://github.com/piranga8/)