Clickable Links in st.json()

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)

Hi @gustavz, it seems like JSON objects are represented as strings. maybe by using javascript it can be done. If you find any solution please do post here.