Hyperlink in streamlit without markdown

Hey @harish_natarajan,

I believe that we already have the feature your looking for, you can definitely put hyperlinks in a Streamlit app

import streamlit as st 

st.write("check out this [link](https://share.streamlit.io/mesmith027/streamlit_webapps/main/MC_pi/streamlit_app.py)")

will produce:
check out this link

Cheers!
Marisa

5 Likes