# File lib/maruku/output/to_latex.rb, line 377
  def to_latex_im_link
    url = self.url

    if url.start_with? '#'
      url = url[1..-1]
      "\\hyperlink{#{url}}{#{children_to_latex}}"
    else
      "\\href{#{url}}{#{children_to_latex}}"
    end
  end