In [1]:
from lets_plot import *
LetsPlot.setup_html()
In [2]:
ggplot() \
    + geom_label(
        x=0, y=0, label='Here is a label with a <a href="https://google.com">google</a>! link',
        tooltips=layer_tooltips().line('Link to a <a href="https://google.com">google</a> inside a tooltip')
            
    ) \
    + labs(
        title='Notebook with <a href="https://google.com">links</a>',
        subtitle='Visit <a href="https://lets-plot.org">lets-plot.org</a> for more examples',
        caption='Data provided by <a href="https://nasa.com">NASA</a> and <a href="https://eida.com">EISA</a>.'
    ) 
Out[2]:
In [3]:
dump_plot(_)
Out[3]:
In [ ]: