import streamlit as st
with st.expander(label="https://www.google.com/"):
st.write("No text or url shown")
with st.expander(label="[My Markdown Link]('https://www.google.com/')"):
st.write("My Markdown Link not being displayed")
with st.expander(label="**My Markdown**"):
st.write("Regular Bold Text shows")
Expected behavior:
Show the link inside the expander label, using markdown similar to st.markdown("[My Markdown Link](https://www.google.com/)")
Same issue with checkboxes - based on documentation the label should support links, but it doesnโt - i.e the following line doesnโt show correctly: link = st.checkbox("this is a [link](https://www.google.com)")