Class: MultipageHtml5Converter
- Inherits:
-
Asciidoctor::Converter::Html5Converter
- Object
- Asciidoctor::Converter::Html5Converter
- MultipageHtml5Converter
- Includes:
- Asciidoctor, Asciidoctor::Converter, Asciidoctor::Writer
- Defined in:
- lib/asciidoctor-multipage.rb
Instance Attribute Summary collapse
-
#full_outline ⇒ Object
contains the entire outline of the top-level document, used as a guide-rail for creating TOC elements for documents we split off.
-
#pages ⇒ Object
Returns the value of attribute pages.
Instance Method Summary collapse
-
#add_nav_links(page) ⇒ Object
Add navigation links to the page (from nav_links).
-
#check_root(doc) ⇒ Object
ensures that the AsciiDoctor::Document::mp_root is correctly set on the document object.
-
#convert_document(node) ⇒ Object
Process Document (either the original full document or a processed page).
-
#convert_embedded(node) ⇒ Object
Process Document in embeddable mode (either the original full document or a processed page).
-
#convert_inline_anchor(node) ⇒ Object
Include chapter pages in cross-reference links.
-
#convert_outline(node, opts = {}) ⇒ Object
Override Html5Converter convert_outline() to return a custom TOC outline.
-
#convert_section(node) ⇒ Object
Process a Section.
-
#generate_nav_links(doc) ⇒ Object
Generate navigation links for all pages in document; save HTML to nav_links.
-
#generate_outline(node, opts = {}) ⇒ Object
Generate the actual HTML outline for the TOC.
-
#initialize(backend, opts = {}) ⇒ MultipageHtml5Converter
constructor
A new instance of MultipageHtml5Converter.
-
#new_outline_doc(node, new_parent: nil, for_page: nil) ⇒ Object
From node, create a skeleton document that will be used to generate the TOC.
-
#reparent(node, parent) ⇒ Object
Change node parent to new parent recursively.
-
#set_multipage_attrs(node) ⇒ Object
Add multipage attribute to all sections in node, recursively.
-
#write(output, target) ⇒ Object
Convert each page and write it to file.
Constructor Details
#initialize(backend, opts = {}) ⇒ MultipageHtml5Converter
Returns a new instance of MultipageHtml5Converter.
122 123 124 125 126 127 128 |
# File 'lib/asciidoctor-multipage.rb', line 122 def initialize(backend, opts = {}) @xml_mode = false @void_element_slash = nil super @stylesheets = Stylesheets.instance @pages = [] end |
Instance Attribute Details
#full_outline ⇒ Object
contains the entire outline of the top-level document, used as a guide-rail for creating TOC elements for documents we split off. Only expected to be set in the top-level converter (see AsciiDoctor::Document::mp_root)
120 121 122 |
# File 'lib/asciidoctor-multipage.rb', line 120 def full_outline @full_outline end |
#pages ⇒ Object
Returns the value of attribute pages.
114 115 116 |
# File 'lib/asciidoctor-multipage.rb', line 114 def pages @pages end |
Instance Method Details
#add_nav_links(page) ⇒ Object
Add navigation links to the page (from nav_links)
131 132 133 134 135 136 137 |
# File 'lib/asciidoctor-multipage.rb', line 131 def add_nav_links(page) block = Asciidoctor::Block.new(parent = page, :paragraph, opts = {:source => page.nav_links}) block.add_role('nav-footer') page << block end |
#check_root(doc) ⇒ Object
ensures that the AsciiDoctor::Document::mp_root is correctly set on the document object. The variable could have already been set if we created the document ourselves (see ::MultipageHtml5Converter::convert_section), in which case it’s not changed. If the documented is “nested”, then we expect the parent document to already have it set. Otherwise, this is expected to be a top-level document, and we assign ourselves as its original converter.
146 147 148 149 150 151 152 153 154 |
# File 'lib/asciidoctor-multipage.rb', line 146 def check_root(doc) unless doc.mp_root if doc.nested? doc.mp_root = doc.parent_document.mp_root else doc.mp_root = self end end end |
#convert_document(node) ⇒ Object
Process Document (either the original full document or a processed page)
157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 |
# File 'lib/asciidoctor-multipage.rb', line 157 def convert_document(node) # make sure document has original converter reference check_root(node) if node.processed # This node (an individual page) can now be handled by # Html5Converter. super else # This node is the original full document which has not yet been # processed; this is the entry point for the extension. # Save a reference to the root document in the converter # instance. This will be used to set the @requires_stylesheet # variable on the root document in the write method. @root_doc = node # Turn off extensions to avoid running them twice. # FIXME: DocinfoProcessor, InlineMacroProcessor, and Postprocessor # extensions should be retained. Is this possible with the API? #Asciidoctor::Extensions.unregister_all # Check toclevels and multipage-level attributes mplevel = node.document.attr('multipage-level', 1).to_i toclevels = node.document.attr('toclevels', 2).to_i if toclevels < mplevel logger.warn 'toclevels attribute should be >= multipage-level' end if mplevel < 0 logger.warn 'multipage-level attribute must be >= 0' mplevel = 0 end node.document.set_attribute('multipage-level', mplevel.to_s) # Set multipage chunk types set_multipage_attrs(node) # FIXME: This can result in a duplicate ID without a warning. # Set the "id" attribute for the Document, using the "docname", which is # based on the file name. Then register the document ID using the # document title. This allows cross-references to refer to (1) the # top-level document itself or (2) anchors in top-level content (blocks # that are specified before any sections). node.id = node.attributes['docname'] node.register(:refs, [node.id, (Inline.new(parent = node, context = :anchor, text = node.doctitle, opts = {:type => :ref, :id => node.id})), node.doctitle]) # Generate navigation links for all pages generate_nav_links(node) # Create and save a skeleton document for generating the TOC lists, # but don't attempt to create outline for nested documents. unless node.nested? # if the original converter has the @full_outline set already, we are about # to replace it. That's not supposed to happen, and probably means we encountered # a document structure we aren't prepared for. Log an error and move on. logger.error "Regenerating document outline, something wrong?" if node.mp_root.full_outline node.mp_root.full_outline = new_outline_doc(node) end # Save the document catalog to use for each part/chapter page. @catalog = node.catalog # Retain any book intro blocks, delete others, and add a list of sections # for the book landing page. parts_list = Asciidoctor::List.new(node, :ulist) node.blocks.delete_if do |block| if block.context == :section part = block part.convert text = %(<<#{part.id},#{part.}>>) if (desc = block.attr('desc')) then text << %( – #{desc}) end parts_list << Asciidoctor::ListItem.new(parts_list, text) end end node << parts_list # Add navigation links add_nav_links(node) # Mark page as processed and return converted result node.processed = true node.convert end end |
#convert_embedded(node) ⇒ Object
Process Document in embeddable mode (either the original full document or a processed page)
251 252 253 254 255 256 257 258 259 260 261 262 263 |
# File 'lib/asciidoctor-multipage.rb', line 251 def (node) # make sure document has original converter reference check_root(node) if node.processed # This node (an individual page) can now be handled by # Html5Converter. super else # This node is the original full document which has not yet been # processed; it can be handled by convert_document(). convert_document(node) end end |
#convert_inline_anchor(node) ⇒ Object
Include chapter pages in cross-reference links. This method overrides for the :xref node type only.
365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 |
# File 'lib/asciidoctor-multipage.rb', line 365 def convert_inline_anchor(node) if node.type == :xref # This is the same as super... if (path = node.attributes['path']) attrs = (append_link_constraint_attrs node, node.role ? [%( class="#{node.role}")] : []).join text = node.text || path else attrs = node.role ? %( class="#{node.role}") : '' unless (text = node.text) if AbstractNode === (ref = (@refs ||= node.document.catalog[:refs])[refid = node.attributes['refid']] || (refid.nil_or_empty? ? (top = get_root_document node) : nil)) if (@resolving_xref ||= (outer = true)) && outer if (text = ref.xreftext node.attr 'xrefstyle', nil, true) text = text.gsub DropAnchorRx, '' if text.include? '<a' else text = top ? '[^top]' : %([#{refid}]) end @resolving_xref = nil else text = top ? '[^top]' : %([#{refid}]) end else text = %([#{refid}]) end end end # But we also need to find the parent page of the target node. current = node.document.catalog[:refs][node.attributes['refid']] until current.respond_to?(:mplevel) && current.mplevel != :content return %(<a href="#{node.target}"#{attrs}>#{text}</a>) if !current current = current.parent end parent_page = current # If the target is the top-level section of the parent page, there is no # need to include the anchor. if "##{parent_page.id}" == node.target target = "#{parent_page.id}.html" else target = "#{parent_page.id}.html#{node.target}" end %(<a href="#{target}"#{attrs}>#{text}</a>) else # Other anchor types can be handled as normal. super end end |
#convert_outline(node, opts = {}) ⇒ Object
Override Html5Converter convert_outline() to return a custom TOC outline.
456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 |
# File 'lib/asciidoctor-multipage.rb', line 456 def convert_outline(node, opts = {}) doc = node.document # Find this node in the @full_outline skeleton document page_node = doc.mp_root.full_outline.find_by(id: node.id).first # Create a skeleton document for this particular page custom_outline_doc = new_outline_doc(doc.mp_root.full_outline, for_page: page_node) opts[:page_id] = node.id # Generate an extra TOC entry for the root page. Add additional styling if # the current page is the root page. root_file = %(#{doc.attr('docname')}#{doc.attr('outfilesuffix')}) root_link = %(<a href="#{root_file}">#{doc.doctitle}</a>) classes = ['toc-root'] classes << 'toc-current' if node.id == doc.attr('docname') root = %(<span class="#{classes.join(' ')}">#{root_link}</span>) # Create and return the HTML %(<p>#{root}</p>#{generate_outline(custom_outline_doc, opts)}) end |
#convert_section(node) ⇒ Object
Process a Section. Each Section will either be split off into its own page or processed as normal by Html5Converter.
500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 |
# File 'lib/asciidoctor-multipage.rb', line 500 def convert_section(node) doc = node.document if doc.processed # This node can now be handled by Html5Converter. super else # This node is from the original document and has not yet been processed. # Create a new page for this section page = Asciidoctor::Document.new([], {:attributes => doc.attributes.clone, :doctype => doc.doctype, :header_footer => !doc.attr?(:embedded), :safe => doc.safe}) # Manually remove stylesheet attribute if not set on original document # (why is doc.attributes.clone not adequate?) if ! doc.attributes.has_key?('stylesheet') page.remove_attr('stylesheet') end # Retain webfonts attribute (why is doc.attributes.clone not adequate?) page.set_attr('webfonts', doc.attr(:webfonts)) # Save sectnum for use later (a Document object normally has no sectnum) if node.parent.respond_to?(:numbered) && node.parent.numbered page.sectnum = node.parent.sectnum end page.mp_root = doc.mp_root # Process node according to mplevel if node.mplevel == :branch # Retain any part intro blocks, delete others, and add a list # of sections for the part landing page. chapters_list = Asciidoctor::List.new(node, :ulist) node.blocks.delete_if do |block| if block.context == :section chapter = block chapter.convert text = %(<<#{chapter.id},#{chapter.}>>) # NOTE, there is a non-breaking space (Unicode U+00A0) below. if desc = block.attr('desc') then text << %( – #{desc}) end chapters_list << Asciidoctor::ListItem.new(chapters_list, text) true end end # Add chapters list to node, reparent node to new page, add # node to page, mark as processed, and add page to @pages. node << chapters_list reparent(node, page) page.blocks << node else # :leaf # Reparent node to new page, add node to page, mark as # processed, and add page to @pages. reparent(node, page) page.blocks << node end # Add navigation links using saved HTML page.nav_links = node.nav_links add_nav_links(page) # Mark page as processed and add to collection of pages @pages << page page.id = node.id page.catalog = @catalog page.mplevel = node.mplevel page.processed = true end end |
#generate_nav_links(doc) ⇒ Object
Generate navigation links for all pages in document; save HTML to nav_links
266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 |
# File 'lib/asciidoctor-multipage.rb', line 266 def generate_nav_links(doc) pages = doc.find_by(context: :section) {|section| [:root, :branch, :leaf].include?(section.mplevel)} pages.insert(0, doc) pages.each do |page| page_index = pages.find_index(page) links = [] if page.mplevel != :root previous_page = pages[page_index-1] parent_page = page.parent home_page = doc # NOTE: There are some non-breaking spaces (U+00A0) below, in # the "links <<" lines and "links.join" line. if previous_page != parent_page links << %(← #{doc.attr('multipage-nav-previous-label') || "Previous"}: <<#{previous_page.id},#{previous_page.}>>) end links << %(↑ #{doc.attr('multipage-nav-up-label') || "Up"}: <<#{parent_page.id},#{parent_page.}>>) links << %(⌂ #{doc.attr('multipage-nav-home-label') || "Home"}: <<#{home_page.id},#{home_page.}>>) if home_page != parent_page end if page_index != pages.length-1 next_page = pages[page_index+1] links << %(#{doc.attr('multipage-nav-next-label') || "Next"}: <<#{next_page.id},#{next_page.}>> →) end block = Asciidoctor::Block.new(parent = doc, context = :paragraph, opts = {:source => links.join(' | '), :subs => :default}) page.nav_links = block.content end return end |
#generate_outline(node, opts = {}) ⇒ Object
Generate the actual HTML outline for the TOC. This method is analogous to Html5Converter convert_outline().
300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 |
# File 'lib/asciidoctor-multipage.rb', line 300 def generate_outline(node, opts = {}) # Do the same as Html5Converter convert_outline() here return unless node.sections? && node.sections.length > 0 sectnumlevels = opts[:sectnumlevels] || (node.document.attributes['sectnumlevels'] || 3).to_i toclevels = opts[:toclevels] || (node.document.attributes['toclevels'] || 2).to_i sections = node.sections result = [%(<ul class="sectlevel#{sections[0].level}">)] sections.each do |section| slevel = section.level if section. stitle = section. elsif section.numbered && slevel <= sectnumlevels if slevel < 2 && node.document.doctype == 'book' if section.sectname == 'chapter' stitle = %(#{(signifier = node.document.attributes['chapter-signifier']) ? "#{signifier} " : ''}#{section.sectnum} #{section.title}) elsif section.sectname == 'part' stitle = %(#{(signifier = node.document.attributes['part-signifier']) ? "#{signifier} " : ''}#{section.sectnum nil, ':'} #{section.title}) else stitle = %(#{section.sectnum} #{section.title}) end else stitle = %(#{section.sectnum} #{section.title}) end else stitle = section.title end stitle = stitle.gsub DropAnchorRx, '' if stitle.include? '<a' # But add a special style for current page in TOC if section.id == opts[:page_id] stitle = %(<span class="toc-current">#{stitle}</span>) end # And we also need to find the parent page of the target node current = section until current.mplevel != :content current = current.parent end parent_chapter = current # If the target is the top-level section of the parent page, there is no # need to include the anchor. if parent_chapter.id == section.id link = %(#{parent_chapter.id}.html) else link = %(#{parent_chapter.id}.html##{section.id}) end result << %(<li><a href="#{link}">#{stitle}</a>) # Finish in a manner similar to Html5Converter convert_outline() if slevel < toclevels && (child_toc_level = generate_outline section, toclevels: toclevels, secnumlevels: sectnumlevels, page_id: opts[:page_id]) result << child_toc_level end result << '</li>' end result << '</ul>' result.join LF end |
#new_outline_doc(node, new_parent: nil, for_page: nil) ⇒ Object
From node, create a skeleton document that will be used to generate the TOC. This is first used to create a full skeleton (@full_outline) from the original document (for_page=nil). Then it is used for each individual page to create a second skeleton from the first. In this way, TOC entries are included that are not part of the current page, or excluded if not applicable for the current page.
420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 |
# File 'lib/asciidoctor-multipage.rb', line 420 def new_outline_doc(node, new_parent:nil, for_page:nil) if node.class == Document new_document = Document.new([], {:doctype => node.doctype}) new_document.mplevel = node.mplevel new_document.id = node.id new_document.update_attributes(node.attributes) new_parent = new_document node.sections.each do |section| new_outline_doc(section, new_parent: new_parent, for_page: for_page) end # Include the node if either (1) we are creating the full skeleton from the # original document or (2) the node is applicable to the current page. elsif !for_page || node.(for_page) new_section = Section.new(parent = new_parent, level = node.level, numbered = node.numbered) new_section.id = node.id new_section.sectname = node.sectname new_section. = node. new_section.title = node.instance_variable_get(:@title) new_section.mplevel = node.mplevel new_parent << new_section new_parent.sections.last.numeral = node.numeral new_parent = new_section node.sections.each do |section| new_outline_doc(section, new_parent: new_parent, for_page: for_page) end end return new_document end |
#reparent(node, parent) ⇒ Object
Change node parent to new parent recursively
475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 |
# File 'lib/asciidoctor-multipage.rb', line 475 def reparent(node, parent) node.parent = parent if node.context == :dlist node.find_by(context: :list_item).each do |block| reparent(block, node) end else node.blocks.each do |block| reparent(block, node) if block.context == :table block.columns.each do |col| col.parent = col.parent end block.rows.body.each do |row| row.each do |cell| cell.parent = cell.parent end end end end end end |
#set_multipage_attrs(node) ⇒ Object
Add multipage attribute to all sections in node, recursively.
570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 |
# File 'lib/asciidoctor-multipage.rb', line 570 def set_multipage_attrs(node) doc = node.document node.mplevel = :root if node.class == Asciidoctor::Document node.sections.each do |section| # Check custom multipage-level attribute on section; warn and # discard if invalid if section.attr?('multipage-level', nil, false) && section.attr('multipage-level').to_i < node.attr('multipage-level').to_i logger.warn %(multipage-level value specified for "#{section.id}" ) + %(section cannot be less than the parent section value) section.set_attr('multipage-level', nil) end # Propagate custom multipage-level value to child node if !section.attr?('multipage-level', nil, false) && node.attr('multipage-level') != doc.attr('multipage-level') section.set_attr('multipage-level', node.attr('multipage-level')) end # Set section type if section.level < section.attr('multipage-level', nil, true).to_i section.mplevel = :branch elsif section.level == section.attr('multipage-level', nil, true).to_i section.mplevel = :leaf else section.mplevel = :content end # Set multipage attribute on child sections now. set_multipage_attrs(section) end end |
#write(output, target) ⇒ Object
Convert each page and write it to file. Use filenames based on IDs.
602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 |
# File 'lib/asciidoctor-multipage.rb', line 602 def write(output, target) # Write primary (book) landing page ::File.open(target, 'w') do |f| f.write(output) end # Write remaining part/chapter pages outdir = ::File.dirname(target) ext = ::File.extname(target) @pages.each do |doc| chapter_target = doc.id + ext outfile = ::File.join(outdir, chapter_target) ::File.open(outfile, 'w') do |f| f.write(doc.convert) end if (doc.syntax_highlighter and doc.syntax_highlighter.write_stylesheet? doc) root_doc = doc.mp_root.instance_variable_get(:@root_doc) root_doc.syntax_highlighter.instance_variable_set( :@requires_stylesheet, true) end end end |