Hi all,
is it possible to make string links inside json objects clickable?
By default all links are clickable in streamlit calls like st.write(link).
But this is not true for json objects visualized via st.json(obj)
Example:
import streamlit as st
import json
link = "https://www.google.de/"
obj = json.dumps({"link" : link})
st.write(link)
st.json(obj)