7 lines
127 B
Ruby
7 lines
127 B
Ruby
class StripFilter < Nanoc::Filter
|
|
identifier :strip_html
|
|
|
|
def run(content, _params = {})
|
|
strip_html(content)
|
|
end
|
|
end
|