Module: Prawn::SVG::Attributes::Space

Included in:
Elements::Base
Defined in:
lib/prawn/svg/attributes/space.rb

Instance Method Summary collapse

Instance Method Details

#parse_xml_space_attributeObject



2
3
4
5
6
7
8
9
# File 'lib/prawn/svg/attributes/space.rb', line 2

def parse_xml_space_attribute
  case attributes['xml:space']
  when 'preserve'
    state.preserve_space = true
  when 'default'
    state.preserve_space = false
  end
end