Method: IsoDoc::PresentationXMLConvert#toc_refs

Defined in:
lib/isodoc/presentation_function/section.rb

#toc_refs(docxml) ⇒ Object



164
165
166
167
168
169
# File 'lib/isodoc/presentation_function/section.rb', line 164

def toc_refs(docxml)
  docxml.xpath(ns("//toc//xref[text()]")).each do |x|
    lbl = @xrefs.anchor(x["target"], :label) or next
    x.add_first_child "#{lbl}<span class='fmt-caption-delim'><tab/></span>"
  end
end