Sha256: 980b9008593f3617f9068ef336959d041fd5f302735d6c0ea4bbd33cb5203a67
Contents?: true
Size: 254 Bytes
Versions: 23
Compression:
Stored size: 254 Bytes
Contents
module InlineSvg::TransformPipeline::Transformations class IdAttribute < Transformation def transform(doc) doc = Nokogiri::XML::Document.parse(doc.to_html) svg = doc.at_css 'svg' svg['id'] = self.value doc end end end
Version data entries
23 entries across 23 versions & 1 rubygems