Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/DennisSuitters/summernote-text-manipulator
Text Manipulation Plugin Summernote Plugin
https://github.com/DennisSuitters/summernote-text-manipulator
plugin summernote text wysiwyg
Last synced: 3 months ago
JSON representation
Text Manipulation Plugin Summernote Plugin
- Host: GitHub
- URL: https://github.com/DennisSuitters/summernote-text-manipulator
- Owner: DennisSuitters
- License: mit
- Created: 2019-12-21T01:31:46.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2020-08-07T08:23:35.000Z (about 4 years ago)
- Last Synced: 2024-05-03T05:09:05.830Z (6 months ago)
- Topics: plugin, summernote, text, wysiwyg
- Language: JavaScript
- Size: 5.86 KB
- Stars: 5
- Watchers: 2
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-summernote - summernote-text-manipulator
README
# summernote-text-manipulator
A plugin for the [Summernote](https://github.com/summernote/summernote/) WYSIWYG editor.Adds a dropdown to the Toolbar that contains various text manipulation options.
### Installation
#### 1. Include JS
Include the following code after including Summernote:
```html
```
#### 2. Supported languages
Supported languages can be found in the `lang` folder, and should be included after the plugin, then setting the chosen language when initialising Summernote.
#### 3. Summernote options
Finally, customize the Summernote Toolbar.```javascript
$(document).ready(function() {
$('#summernote').summernote({
toolbar:[
['custom',['textManipulator']], // The dropdown
['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']]
],
textManipulator:{
lang: 'en-US' // Change to your chosen language
}
});
});
```#### 4. Check out our other Summernote Plugins via our main Github page.
- [Diemen Design](https://github.com/DiemenDesign/)