Method: Metanorma::Compile#clean_sourcecode

Defined in:
lib/metanorma/compile.rb

#clean_sourcecode(xml) ⇒ Object



138
139
140
141
142
143
144
# File 'lib/metanorma/compile.rb', line 138

def clean_sourcecode(xml)
  xml.xpath(".//callout | .//annotation | .//xmlns:callout | .//xmlns:annotation").each do |x|
    x.remove
  end
  xml.xpath(".//br | .//xmlns:br").each { |x| x.replace("\n") }
  HTMLEntities.new.decode(xml.children.to_xml)
end