Method: CSL#encode_xml_attr

Defined in:
lib/csl/compatibility.rb,
lib/csl/compatibility.rb

#encode_xml_attr(string) ⇒ Object



47
48
49
50
51
# File 'lib/csl/compatibility.rb', line 47

def encode_xml_attr(string)
  string.gsub(/[&<>'"]/) { |match|
    XML_ENTITY_SUBSTITUTION[match]
  }.inspect
end