I want to add to an output ipywidget several links
So far I do:
with wd_LINKS_output:
display('mylinks: ')
now= datetime.now().strftime("%Y-%m-%d %H:%M:%S")
display(now)
display('https://www.google.com/')
I get:
I would like: a) get rid of the '' b) Get a clikable link
Any ideas?
