This gem is a rails plugin that vendorizes the WysiHTML5-Enhanced Rich-Text editor for use with Rails asset pipeline.
You can learn more about WysiHTML5-Enhanced on Github
gem install wysihtml5n-rails
In your application.css (or any other Sprokets-enabled CSS file) add:
//= require wysihtml5n
Alternatively, if you're using SASS you can import wysihtml5n modules individually:
@import 'wysihtml5n/bootstrap';
@import 'wysihtml5n/editor';
@import 'wysihtml5n/font-awesome';
In your application.js (or any other Sprockets-enabled Javascript file) add:
//= require wysihtml5n
Or include the editor modules individually:
//= require wysihtml5n/jcrop
//= require wysihtml5n/wysihtml5-0.3.0
//= require wysihtml5n/wysihtml5-enhanced
Finally, initialize the editor:
$('.wysiwyg').wysiHTML5N();
Wysihtml5n-rails depends on:
- jQuery
- Rails 3.1+
- SASS
The Twitter Bootstrap CSS file that's bundled with Wysihtml5n-rails only contains styles for forms and buttons. If you're already using Twitter Bootstrap in your application there's no need to require it again.