Sha256: 4b032aa13f63b1b395eb02eb0f27ab24e6c3c6e469d841f5b3207b658679fffd

Contents?: true

Size: 697 Bytes

Versions: 3

Compression:

Stored size: 697 Bytes

Contents

module Asciidoctor::PDF::FormattedText
module InlineDestinationMarker
  module_function

  # render_behind is called before the text is printed
  def render_behind fragment
    unless (pdf = fragment.document).scratch?
      if (name = fragment.format_state[:name])
        if fragment.format_state[:type] == :indexterm
          (pdf.instance_variable_get :@index).link_dest_to_page name, pdf.page_number
        end
        # get precise position of the reference (x, y)
        dest_rect = fragment.absolute_bounding_box
        pdf.add_dest name, (pdf.dest_xyz dest_rect[0], dest_rect[-1])
        # prevent any text from being written
        fragment.conceal
      end
    end
  end
end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
asciidoctor-pdf-1.5.0.beta.1 lib/asciidoctor-pdf/formatted_text/inline_destination_marker.rb
asciidoctor-pdf-1.5.0.alpha.18 lib/asciidoctor-pdf/formatted_text/inline_destination_marker.rb
asciidoctor-pdf-1.5.0.alpha.17 lib/asciidoctor-pdf/formatted_text/inline_destination_marker.rb