streamlit_markdown_link.py
· 158 B · Python
Eredeti
import streamlit as st
st.markdown(
'<a href="https://www.example.com" target="_blank">點擊這裡瀏覽範例網站</a>',
unsafe_allow_html=True
)
| 1 | import streamlit as st |
| 2 | |
| 3 | st.markdown( |
| 4 | '<a href="https://www.example.com" target="_blank">點擊這裡瀏覽範例網站</a>', |
| 5 | unsafe_allow_html=True |
| 6 | ) |
| 7 |