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

8 lines
127 B
Ruby
Raw Normal View History

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