class Nanoc::Filters::Maruku

@api private

Public Instance Methods

run(content, params = {}) click to toggle source

Runs the content through [Maruku](github.com/bhollis/maruku/). Parameters passed to this filter will be passed on to Maruku.

@param [String] content The content to filter

@return [String] The filtered content

# File lib/nanoc/filters/maruku.rb, line 16
def run(content, params = {})
  # Get result
  ::Maruku.new(content, params).to_html
end