module Xml::C14n

def self.format(xml)

def self.format(xml)
  Nokogiri::XSLT(NOKOGIRI_C14N_XSL)
    .transform(Nokogiri::XML(xml, &:noblanks))
    .to_xml(indent: 2, pretty: true, encoding: "UTF-8")
end