https://github.com/hikarock/editorify
:art: <textarea> の中をいい感じに操るライブラリ
https://github.com/hikarock/editorify
jquery-plugin textarea
Last synced: about 1 year ago
JSON representation
:art: <textarea> の中をいい感じに操るライブラリ
- Host: GitHub
- URL: https://github.com/hikarock/editorify
- Owner: hikarock
- Created: 2015-02-02T15:15:58.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2016-07-04T14:40:29.000Z (almost 10 years ago)
- Last Synced: 2025-04-20T16:42:23.803Z (about 1 year ago)
- Topics: jquery-plugin, textarea
- Language: JavaScript
- Homepage: https://hikarock.github.io/editorify/
- Size: 25.4 KB
- Stars: 10
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
```text
____ ____ ____ ____ ____ ____ ____ ____ ____
||e ||||d ||||i ||||t ||||o ||||r ||||i ||||f ||||y ||
||__||||__||||__||||__||||__||||__||||__||||__||||__||
|/__\||/__\||/__\||/__\||/__\||/__\||/__\||/__\||/__\|
```
# editorify
[](https://circleci.com/gh/hikarock/editorify/tree/master)
[](https://gratipay.com/hika69/)
## Overview
``の中をいい感じに操るライブラリ。
## DEMO
[DEMO](https://hikarock.github.io/editorify/)
## Usage
```html
```
```javascript
$('.editor').editorify([
['clear'],
['insert', '[](http://example.com)'],
['start'],
['right', 1],
['insert', 'Yo']
]); // [Yo](http://example.com)
```
OR
```javascript
$('.editor')
.editorify('clear')
.editorify('insert', '[](http://example.com)')
.editorify('start')
.editorify('right', 1)
.editorify('insert', 'Yo'); // [Yo](http://example.com)
```
## Install
```bash
$ bower install editorify
```
## Licence
MIT
## Author
[hikarock](https://github.com/hikarock)