Sha256: 46a043a2a8c664e4f18d2c64051c822858d7dfd37411d89a032403a0295f4c28
Contents?: true
Size: 437 Bytes
Versions: 2
Compression:
Stored size: 437 Bytes
Contents
# encoding: utf-8 module Nanoc::Filters class RubyPants < Nanoc::Filter requires 'rubypants' # 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
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
nanoc-3.8.0 | lib/nanoc/filters/rubypants.rb |
nanoc-3.7.5 | lib/nanoc/filters/rubypants.rb |