class Nanoc::Filters::BlueCloth
@api private
Public Instance Methods
Source
# File lib/nanoc/filters/bluecloth.rb, line 16 def run(content, _params = {}) ::BlueCloth.new(content).to_html end
Runs the content through [BlueCloth](deveiate.org/projects/BlueCloth). This method takes no options.
@param [String] content The content to filter
@return [String] The filtered content