Sha256: 77f7dce6a886fb2d62aea72ebde79c2b71d95f89e9a19049fe517ae901939690

Contents?: true

Size: 1.55 KB

Versions: 9

Compression:

Stored size: 1.55 KB

Contents

# frozen_string_literal: true

class Asciidoctor::Section
  def numbered_title opts = {}
    @cached_numbered_title ||= nil
    unless @cached_numbered_title
      if @numbered && !@caption && (slevel = @level) <= (@document.attr 'sectnumlevels', 3).to_i
        @is_numbered = true
        if @document.doctype == 'book'
          case slevel
          when 0
            @cached_numbered_title = %(#{sectnum nil, ':'} #{title})
            @cached_formal_numbered_title = %(#{@document.attr 'part-signifier', 'Part'} #{@cached_numbered_title}).lstrip
          when 1
            @cached_numbered_title = %(#{sectnum} #{title})
            @cached_formal_numbered_title = %(#{@document.attr 'chapter-signifier', '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 @level == 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 unless method_defined? :numbered_title

  def first_section_of_part?
    (par = @parent).context == :section && par.sectname == 'part' && self == par.blocks.find {|it| it.context == :section }
  end unless method_defined? :first_section_of_part?
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
asciidoctor-pdf-2.3.0 lib/asciidoctor/pdf/ext/asciidoctor/section.rb
asciidoctor-pdf-2.2.0 lib/asciidoctor/pdf/ext/asciidoctor/section.rb
asciidoctor-pdf-2.1.6 lib/asciidoctor/pdf/ext/asciidoctor/section.rb
asciidoctor-pdf-2.1.5 lib/asciidoctor/pdf/ext/asciidoctor/section.rb
asciidoctor-pdf-2.1.4 lib/asciidoctor/pdf/ext/asciidoctor/section.rb
asciidoctor-pdf-2.1.3 lib/asciidoctor/pdf/ext/asciidoctor/section.rb
asciidoctor-pdf-2.1.2 lib/asciidoctor/pdf/ext/asciidoctor/section.rb
asciidoctor-pdf-2.1.1 lib/asciidoctor/pdf/ext/asciidoctor/section.rb
asciidoctor-pdf-2.1.0 lib/asciidoctor/pdf/ext/asciidoctor/section.rb