Class: Anydoc::LinkTarget

Inherits:
Data
  • Object
show all
Defined in:
lib/anydoc/document.rb,
sig/anydoc.rbs

Overview

Where a link points.

Instance Attribute Summary collapse

Instance Attribute Details

#kindSymbol (readonly)

:external | :relative | :anchor

Returns:

  • (Symbol)


109
110
# File 'lib/anydoc/document.rb', line 109

class LinkTarget < Data.define(:kind, :value)
end

#valueString (readonly)

Returns the URL, relative reference, or anchor id.

Returns:

  • (String)

    the URL, relative reference, or anchor id.



109
110
# File 'lib/anydoc/document.rb', line 109

class LinkTarget < Data.define(:kind, :value)
end