Sha256: b6441b3b04a4199059b40224b6aab522466f1529a152e5eb121ac6113906bc84
Contents?: true
Size: 420 Bytes
Versions: 14
Compression:
Stored size: 420 Bytes
Contents
# encoding: utf-8 module Nanoc3::Filters class RedCloth < Nanoc3::Filter # Runs the content through [RedCloth](http://redcloth.org/). # This method takes no options. # # @param [String] content The content to filter # # @return [String] The filtered content def run(content, params={}) require 'redcloth' # Get result ::RedCloth.new(content).to_html end end end
Version data entries
14 entries across 14 versions & 1 rubygems