require_relative "init"
require "isodoc"
module IsoDoc
module CC
class PresentationXMLConvert < IsoDoc::PresentationXMLConvert
def annex1(f)
lbl = @xrefs.anchor(f['id'], :label)
if t = f.at(ns("./title"))
t.children = "#{t.children.to_xml}"
end
prefix_name(f, "
", lbl, "title")
end
include Init
end
end
end