tparkin / medium-editor-rails

Medium Editor integrated in Rails Asset Pipeline

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Medium Editor for Rails

Gem Version Code Climate Dependency Status

This gem integrates Medium Editor with Rails asset pipeline.

Version

The latest version of Medium Editor bundled by this gem is 2.0.0

Installation

Include medium-editor-rails in your Rails project's Gemfile:

gem 'medium-editor-rails'

And then execute:

$ bundle install

Configuration

Include javascript file in app/assets/javascripts/application.js:

//= require medium-editor

Include stylesheet file on app/assets/stylesheets/application.css:

*= require medium-editor/medium-editor

You can also include themes from themes folder, example:

*= require medium-editor/themes/flat

Using Medium Editor with Rails

You need to initialize Medium Editor with any selector of div, example:

<div class="editable"></div>

<script>var editor = new MediumEditor('.editable');</script>

For extra options, visit this page:

https://github.com/daviferreira/medium-editor#initialization-options

Contributing

  1. Fork it ( http://github.com/marjinal1st/medium-editor-rails/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request

About

Medium Editor integrated in Rails Asset Pipeline

License:MIT License


Languages

Language:Ruby 100.0%