Method: Roo::Excelx::SheetDoc#hyperlinks

Defined in:
lib/roo/excelx/sheet_doc.rb


23
24
25
26
27
28
29
30
# File 'lib/roo/excelx/sheet_doc.rb', line 23

def hyperlinks(relationships)
  # If you're sure you're not going to need this hyperlinks you can discard it
  @hyperlinks ||= if @options[:no_hyperlinks]
    {}
  else
    extract_hyperlinks(relationships)
  end
end