zeus.ugent.be/lib/filters/strip_filter.rb

8 lines
127 B
Ruby
Raw Normal View History

2016-07-20 17:52:56 +02:00
class StripFilter < Nanoc::Filter
identifier :strip_html
def run(content, _params = {})
strip_html(content)
end
end