class Asciidoctor::Section
Public Instance Methods
chapter?()
click to toggle source
# File lib/asciidoctor/pdf/ext/asciidoctor/section.rb, line 38 def chapter? @document.doctype == 'book' && (@level == 1 || (@special && @level == 0)) end
numbered_title(opts = {})
click to toggle source
# File lib/asciidoctor/pdf/ext/asciidoctor/section.rb, line 4 def numbered_title opts = {} @cached_numbered_title ||= nil unless @cached_numbered_title slevel = @level == 0 && @special ? 1 : @level if @numbered && !@caption && slevel <= (@document.attr 'sectnumlevels', 3).to_i @is_numbered = true if @document.doctype == 'book' if slevel == 0 @cached_numbered_title = %(#{sectnum nil, ':'} #{title}) @cached_formal_numbered_title = %(#{@document.attr 'part-signifier', 'Part'} #{@cached_numbered_title}).lstrip elsif slevel == 1 @cached_numbered_title = %(#{sectnum} #{title}) @cached_formal_numbered_title = %(#{@document.attr 'chapter-signifier', (@document.attr 'chapter-label', 'Chapter')} #{@cached_numbered_title}).lstrip else @cached_formal_numbered_title = @cached_numbered_title = %(#{sectnum} #{title}) end else @cached_formal_numbered_title = @cached_numbered_title = %(#{sectnum} #{title}) end elsif slevel == 0 @is_numbered = false @cached_numbered_title = @cached_formal_numbered_title = title else @is_numbered = false @cached_numbered_title = @cached_formal_numbered_title = captioned_title end end opts[:formal] ? @cached_formal_numbered_title : @cached_numbered_title end
part?()
click to toggle source
# File lib/asciidoctor/pdf/ext/asciidoctor/section.rb, line 34 def part? @document.doctype == 'book' && @level == 0 && !@special end
part_or_chapter?()
click to toggle source
# File lib/asciidoctor/pdf/ext/asciidoctor/section.rb, line 42 def part_or_chapter? @document.doctype == 'book' && @level < 2 end