# kindeditor
**Repository Path**: jackgitee88/kindeditor
## Basic Information
- **Project Name**: kindeditor
- **Description**: 开源的在线HTML编辑器
- **Primary Language**: JavaScript
- **License**: LGPL-2.1
- **Default Branch**: master
- **Homepage**: http://www.kindsoft.net/
- **GVP Project**: No
## Statistics
- **Stars**: 0
- **Forks**: 3
- **Created**: 2025-04-27
- **Last Updated**: 2025-04-27
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
KindEditor
=================================================
KindEditor is a lightweight, Open Source(LGPL), cross browser, web based WYSIWYG HTML editor, easy to integrate with all of server side language such as Java, .NET, PHP, ASP, Python, Perl and Ruby.
## Features
* Lightweight: Only 28KB after gziped.
* Cross browser: Supports IE6-IE9, Firefox, Chrome, Safari and Opera.
* Customizable: Easy to change themes and plugins.
## Examples
http://www.kindsoft.net/ke4/examples/multi-language.html
## Downloads
http://code.google.com/p/kindeditor/downloads/list
## Installation
1. Download the latest version of the editor.
2. Extract the downloaded archive to a directory called kindeditor in the root of your website.
3. Insert the following code fragment into your page.
```html
```
4. Fetch HTML data.
```javascript
html = editor.html();
```
5. Synchronize HTML data to the textarea
```javascript
editor.sync();
html = document.getElementById('editor_id').value; // Native API
html = K('#editor_id').val(); // KindEditor Node API
html = $('#editor_id').val(); // jQuery API
```
6. Set HTML data to KindEditor
```javascript
editor.html('HTML code');
```
For more information, please visit http://kindsoft.net/docs/ (Chinese)
## Build code
`ant`
Will combine, preprocess and minify the codes in the src directory into kindeditor.js and kindeditor-min.js.
`ant all`
Will combine, preprocess and minify the codes in the src and plugins directory into kindeditor-all.js and kindeditor-all-min.js.
`ant zip`
Will create a zip file of the current repository code. The zip file will be placed in the dist directory.
## Compatible
* Internet Explorer 6+
* Mozilla Firefox 3+
* Chrome 3+
* Safari 4+
* Opera 10+
## Contributors
* Timon Lin
* daif alotaibi (http://daif.net/) : Arabic Translation
* fisker (https://github.com/fisker) : QQ style theme
* composite (https://github.com/composite) : Korean Translation