from lets_plot import *
LetsPlot.setup_html()
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>.'
)
dump_plot(_)