scratch/lib/fix_img.rb
2012-12-20 13:21:47 +01:00

8 lines
176 B
Ruby

class FixImage < Nanoc3::Filter
identifier :fix_img
def run(content, params={})
content.gsub(%r{<p>(<img[^>]*>)</p>}) do |m|
$1.to_s
end
end
end