Method: MaRuKu::Out::Latex#to_latex_im_link
- Defined in:
- lib/maruku/output/to_latex.rb
#to_latex_im_link ⇒ Object
385 386 387 388 389 390 391 392 393 394 |
# File 'lib/maruku/output/to_latex.rb', line 385 def to_latex_im_link url = self.url if url[0,1] == '#' url = url[1,url.size] return "\\hyperlink{#{url}}{#{children_to_latex}}" else return "\\href{#{url}}{#{children_to_latex}}" end end |