Hello there, first post here.
I would like to render a clickable link in a Dataframe using the st.dataframe method.
Whenever I try it just renders my urls as plain text like: <a href=“https://www.yahoo.com/video/top-5-robotics-artificial-intelligence-162349437.html”>https://www.yahoo.com/video/top-5-robotics-artificial-intelligence-162349437.html
I know that I can convert my data from a Pandas Dataframe to a plain string using the .to_html method and after that display it with st.table or st.write. But I want the nice look and possibilities of the dataframe (horizontal scrollable table).
Is there any way to achieve this?
Many thanks and keep up the good work.