9 lines
157 B
Ruby
9 lines
157 B
Ruby
include Nanoc::Helpers::Text
|
|
|
|
class StripFilter < Nanoc::Filter
|
|
identifier :strip_html
|
|
|
|
def run(content, _params = {})
|
|
strip_html(content)
|
|
end
|
|
end
|