class IsoDoc::Iso::HtmlConvert

def html_toc(docxml)

def html_toc(docxml)
  super
  docxml.xpath("//div[@id = 'toc']/ul[li[@class = 'h2']]").each do |u|
    html_toc1(u)
  end
  docxml
end