An open API service indexing awesome lists of open source software.

https://github.com/sinhapaurush/ckeditor

Creates rich text input field with text formatting, returns output in html code.
https://github.com/sinhapaurush/ckeditor

tminc-yugal yugal

Last synced: 11 months ago
JSON representation

Creates rich text input field with text formatting, returns output in html code.

Awesome Lists containing this project

README

          

# CKEDITOR FOR YUGAL
Creates rich text input field with text formatting, returns output in ```html``` code.

Install it using the command below.
```bash
yugal --install https://github.com/sinhapaurush/ckeditor.git
```

After installing, paste the following code in your ```string.php``` file, you can customize your text input type with the following code, if this step is not done, a moderate text editor will be created.
```bash
/* ACCEPTED VALUES: basic | standard | full */
// 'standard' BY DEFAULT
$ckeditor_type = "basic";
```

**Accepted Values**: ```basic``` | ```standard``` | ```full```.

```js
CKEDITOR.replace('name-of-input');
```
Go to [CKEditor](http://ckeditor.com/) to learn more.