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

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> の中をいい感じに操るライブラリ

Awesome Lists containing this project

README

          

```text
____ ____ ____ ____ ____ ____ ____ ____ ____
||e ||||d ||||i ||||t ||||o ||||r ||||i ||||f ||||y ||
||__||||__||||__||||__||||__||||__||||__||||__||||__||
|/__\||/__\||/__\||/__\||/__\||/__\||/__\||/__\||/__\|
```

# editorify

[![](https://circleci.com/gh/hikarock/editorify.svg?style=shield&circle-token=c7c2d74f61100be974f6baae830f4c7395d92490)](https://circleci.com/gh/hikarock/editorify/tree/master)
[![gratipay](https://img.shields.io/gratipay/hika69.svg)](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)