1
0
Fork 0
forked from wezm/wezm.net
wezm.net/lib/smart_rdiscount.rb

14 lines
308 B
Ruby
Raw Normal View History

module WezM::Filters
class SmartRDiscount < Nanoc3::Filter
def run(content, params={})
require 'rdiscount'
markdown = ::RDiscount.new(content)
markdown.smart = true
markdown.to_html
end
end
end
Nanoc3::Filter.register '::WezM::Filters::SmartRDiscount', :smart_rdiscount