I\'ve just followed the install instructions at the the bootsy gem page and it all looks good until I save and look at the post\'s content.
This is what the output l
Sergio is correct but have the .html_safe on the output rather than the input.
For example, on a post index:
<%= post.body.html_safe %>
Hope this helps.