The Wordgard rich text editor
https://wordgard.net
- TypeScript 99.9%
- JavaScript 0.1%
| bin | ||
| demo | ||
| src | ||
| test | ||
| .gitignore | ||
| CHANGELOG.md | ||
| LICENSE | ||
| package.json | ||
| README.md | ||
| tsconfig.json | ||
Wordgard
[ WEBSITE | DOCS | ISSUES | FORUM
This is the Wordgard package. It implements a rich text editor framework for the browser.
npm i wordgard
import {Wordgard, menuBar} from "wordgard/editor"
import {fullSchema} from "wordgard/schema"
import {history} from "wordgard/history"
const myEditor = Wordgard.create({
parent: document.body,
doc: `<h2>Hello World</h2>`,
config: [fullSchema(), history(), menuBar()]
})
This project is licensed under an MIT license.