https://github.com/minsithu/yawywatwar
a WYSIWYG text editor
https://github.com/minsithu/yawywatwar
Last synced: 3 months ago
JSON representation
a WYSIWYG text editor
- Host: GitHub
- URL: https://github.com/minsithu/yawywatwar
- Owner: MinSiThu
- License: mit
- Created: 2019-06-18T09:24:19.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2019-08-18T11:33:16.000Z (almost 6 years ago)
- Last Synced: 2025-01-09T05:44:03.357Z (4 months ago)
- Language: JavaScript
- Size: 29.3 KB
- Stars: 2
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# YawYwatWar
```
npm i --save yawywatwar-editor
``````html
<script>
``````js
function bootstrap(){
let txeditor = new YawYwatWarEditor(document.getElementById('content'))
txeditor.setUp({
toolbarConfig:["bold","italic","underline","link",
"image","heading",
"left-align","right-align","center-align",
"ordered-list","unordered-list",
],
plugins: {
IMAGE:Plugins.imageExplorer,
}
})
}bootstrap()
```