-
Notifications
You must be signed in to change notification settings - Fork 2
Home
Lightweight WYSIWYG Rich Text Editor Zero dependencies Β· 30+ tools Β· Light & Dark themes
Welcome to the official Neiki Editor documentation wiki! Here you'll find everything you need to install, configure, extend, and integrate the editor into your projects.
Tip
New to Neiki Editor? Start with the Getting Started guide β you'll have a working editor in under 2 minutes.
| Page | Description |
|---|---|
| π Getting Started | Installation, CDN setup, and your first editor |
| βοΈ Configuration | All configuration options explained in detail |
| π§ Toolbar Reference | Complete list of 30+ toolbar buttons |
| π Plugin API | Build custom plugins and extend the editor |
| π Integration Guide | PHP, Vue.js, React, and AJAX examples |
| π§© Advanced Features | Tables, images, themes, find & replace, and more |
<!-- 1. Include assets -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/neikiri/neiki-editor@2.2.0/dist/neiki-editor.css">
<script src="https://cdn.jsdelivr.net/gh/neikiri/neiki-editor@2.2.0/dist/neiki-editor.js"></script>
<!-- 2. Create a textarea -->
<textarea id="editor"></textarea>
<!-- 3. Initialize -->
<script>
const editor = new NeikiEditor('#editor');
</script>Note
That's it β zero config required. The editor replaces the <textarea> with a full-featured WYSIWYG editor automatically.
|
|
|
|
| Shortcut | Action |
|---|---|
Ctrl+B |
Bold |
Ctrl+I |
Italic |
Ctrl+U |
Underline |
Ctrl+K |
Insert Link |
Ctrl+S |
Save (triggers onSave callback) |
Ctrl+Z |
Undo |
Ctrl+Y / Ctrl+Shift+Z
|
Redo |
Tab |
Indent |
Shift+Tab |
Outdent |
| Browser | Support |
|---|---|
| Chrome | β Latest |
| Firefox | β Latest |
| Safari | β Latest |
| Edge | β Latest |
| Opera | β Latest |
Important
Neiki Editor relies on contentEditable and document.execCommand, which are supported in all modern browsers. Internet Explorer is not supported.
neiki-editor/
βββ dist/
β βββ neiki-editor.js # Editor core
β βββ neiki-editor.css # Editor styles
βββ demo/
β βββ index.html # Interactive demo page
β βββ logo.png # Demo logo
βββ php/
β βββ neiki-editor.php # PHP integration helper
βββ logo.png
βββ package.json
βββ README.md
βββ LICENSE
βββ CHANGELOG.md
βββ CONTRIBUTING.md
βββ CODE_OF_CONDUCT.md
βββ SECURITY.md
Neiki Editor is released under the MIT License. See LICENSE for details.
Getting Started
Reference
Extending
Integration
Features & UI
Project