# encoding: utf-8 require 'rubypants' module Nanoc::Filters class RubyPants < Nanoc::Filter # Runs the content through [RubyPants](http://rubydoc.info/gems/rubypants/). # This method takes no options. # # @param [String] content The content to filter # # @return [String] The filtered content def run(content, params={}) # Get result ::RubyPants.new(content).to_html end end end