Method: IsoDoc::PresentationXMLConvert#toc_refs
- Defined in:
- lib/isodoc/presentation_function/section.rb
#toc_refs(docxml) ⇒ Object
242 243 244 245 246 247 |
# File 'lib/isodoc/presentation_function/section.rb', line 242 def toc_refs(docxml) docxml.xpath(ns("//toc//xref[text()]")).each do |x| lbl = @xrefs.anchor(x["target"], :label) or next x.children.first.previous = "#{lbl}<tab/>" end end |