Runs the content through [RDiscount](github.com/rtomayko/rdiscount).
@option params [Array] symbol ([]) A list of RDiscount extensions
@param [String] content The content to filter
@return [String] The filtered content
# File lib/nanoc/filters/rdiscount.rb, line 14 def run(content, params={}) extensions = params[:extensions] || [] ::RDiscount.new(content, *extensions).to_html end
Generated with the Darkfish Rdoc Generator 2.