Class: InlineSvg::TransformPipeline::Transformations::StyleAttribute
- Inherits:
-
Transformation
- Object
- Transformation
- InlineSvg::TransformPipeline::Transformations::StyleAttribute
- Defined in:
- lib/inline_svg/transform_pipeline/transformations/style_attribute.rb
Instance Attribute Summary
Attributes inherited from Transformation
Instance Method Summary collapse
Methods inherited from Transformation
create_with_value, #initialize, #with_svg
Constructor Details
This class inherits a constructor from InlineSvg::TransformPipeline::Transformations::Transformation
Instance Method Details
#transform(doc) ⇒ Object
3 4 5 6 7 8 9 |
# File 'lib/inline_svg/transform_pipeline/transformations/style_attribute.rb', line 3 def transform(doc) with_svg(doc) do |svg| styles = svg["style"].to_s.split(";") styles << value svg["style"] = styles.join(";") end end |