Inserting a Link to a Webpage in an IPython Notebook

How is this done? I'd like to have the link be in a markdown cell.


Solution 1:

For visual learners.

[blue_text](url_here)

Thanks dbliss.

Solution 2:

In case it is not a markdown cell, that is with what I went:

from IPython.core.display import display, HTML
display(HTML("""<a href="https://google.at">text</a>"""))