Skip to content

Instantly share code, notes, and snippets.

@r38y
Last active December 29, 2015 11:19
Show Gist options
  • Save r38y/7663375 to your computer and use it in GitHub Desktop.
Save r38y/7663375 to your computer and use it in GitHub Desktop.
# Add the following to your Gemfile
# gem 'rubypants-unicode', '~>0.2.3', require: false
begin
require 'rubypants-unicode'
rescue LoadError => _
abort "Missing dependency 'rubypants-unicode' for RubyPantsFilter."
end
module HTML
class Pipeline
class RubyPantsFilter < TextFilter
def call
RubyPants.new(@text).to_html
end
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment