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.
- Host: GitHub
- URL: https://github.com/sinhapaurush/ckeditor
- Owner: sinhapaurush
- Created: 2021-05-11T05:41:45.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2023-04-24T02:17:47.000Z (almost 3 years ago)
- Last Synced: 2025-02-12T07:25:53.110Z (about 1 year ago)
- Topics: tminc-yugal, yugal
- Language: PHP
- Homepage:
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
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.