1.6.1 • Published 3 years ago

rich-react-editor v1.6.1

Weekly downloads
10
License
ISC
Repository
github
Last release
3 years ago

React Rich Text Editor

Supports:

  • Rich text editing.
  • Code editing.
  • Paste any content without loosing actual styles.
  • Multi language supports.
  • Customize image uploader.

rich-react-editor

Installation:

npm i rich-react-editor

Plug into any app:

  import ReactRichEditor from 'rich-react-editor'
  ... 
  ...
  return(
    <ReactRichEditor height={200} />
  )
  ....

Props and usage:

height :

To set editor's height.

height = { 200 }
Type: Number
Default: 500
imageModel :

Start image upload support by passing custom uploader.

imageModel = { <ImageUploader> }
Type: Element
Default: Null
insertImage :

Insert image into editor by passing url of image.

insertImage = { "http://example.com/image.jpg" }
Type: string
Default: ""
languages :

Customise language support by add/subtract new language.

languages={ [{
    "label": "English",
    "value": "english"
}] }
Type: Array
Default: All languages array
onTextChange :

get continuous plain text change of editor.

onTextChange={e =>
 console.log(e);
}
Type: Func
onCodeChange :

get continuous HTML text change of editor.

onCodeChange={e =>
 console.log(e);
}
Type: Func
showAll :

Will shows all toolbar functionality when its enabled. For an ePub usage pass "false", For a blog usage pass "true"

showAll={
    true
}
Type: Boolean
Default: false
1.6.1

3 years ago

1.6.0

3 years ago

1.5.9

3 years ago

1.5.8

3 years ago

1.5.7

5 years ago

1.5.6

5 years ago

1.5.5

5 years ago

1.5.4

5 years ago

1.5.3

5 years ago

1.5.2

5 years ago

1.5.1

5 years ago

1.5.0

5 years ago

1.4.9

5 years ago

1.4.8

5 years ago

1.4.7

5 years ago

1.4.6

5 years ago

1.4.5

5 years ago

1.4.4

5 years ago

1.4.3

5 years ago

1.4.2

5 years ago

1.4.1

5 years ago

1.4.0

5 years ago

1.3.9

5 years ago

1.3.7

5 years ago

1.3.6

5 years ago

1.3.5

5 years ago

1.3.3

5 years ago

1.3.2

5 years ago

1.3.1

5 years ago

1.3.0

5 years ago

1.2.9

5 years ago

1.2.8

5 years ago

1.2.7

5 years ago

1.2.6

5 years ago

1.2.5

5 years ago

1.2.4

5 years ago

1.2.3

5 years ago

1.2.2

5 years ago

1.2.1

5 years ago

1.1.9

5 years ago

1.1.8

5 years ago

1.1.7

5 years ago

1.1.6

5 years ago

1.1.5

5 years ago

1.1.4

5 years ago

1.1.3

5 years ago

1.1.2

5 years ago

1.1.1

5 years ago

1.1.0

5 years ago

1.0.9

5 years ago

1.0.8

5 years ago

1.0.7

5 years ago

1.0.6

5 years ago

1.0.5

5 years ago

1.0.4

5 years ago

1.0.3

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago