Sha256: 8c2eabb2bcd1da0145c0f1f35a0a2781c0acefb27e2fa614d5b2b65a593f57e5
Contents?: true
Size: 288 Bytes
Versions: 16
Compression:
Stored size: 288 Bytes
Contents
module InlineSvg::TransformPipeline module Transformations class NoComment < Transformation def transform(doc) with_svg(doc) do |svg| svg.xpath("//comment()").each do |comment| comment.remove end end end end end end
Version data entries
16 entries across 16 versions & 2 rubygems