显示格式为 Markdown 的字符串。
函数签名
st.markdown(body, unsafe_allow_html=False)
参数 | 说明 |
---|---|
body (str) | 要显示为 Github-flavored Markdown 的字符串。可以在以下位置找到语法信息:https://github.github.com/gfm。 这也支持:
|
unsafe_allow_html (bool) | 默认情况下,在正文中找到的任何 HTML 标记都将被转义,因此被视为纯文本。通过将此参数设置为 True,可以关闭此行为。 也就是说,我们 https://github.com/streamlit/streamlit/issues/152
如果您仍然决定启用 HTML,请在此处告诉我们您的确切用例: https://discuss.streamlit.io/t/96 这将帮助我们提供安全的 API,让您可以随心所欲。 |
示例
st.markdown('Streamlit is **_really_ cool**.')
相关用法
- Python Streamlit st.map用法及代码示例
- Python Streamlit st.metric用法及代码示例
- Python Streamlit st.multiselect用法及代码示例
- Python Streamlit st.experimental_singleton.clear用法及代码示例
- Python Streamlit st.bokeh_chart用法及代码示例
- Python Streamlit st.caption用法及代码示例
- Python Streamlit st.text_input用法及代码示例
- Python Streamlit st.area_chart用法及代码示例
- Python Streamlit st.title用法及代码示例
- Python Streamlit st.cache用法及代码示例
- Python Streamlit st.experimental_singleton用法及代码示例
- Python Streamlit st.empty用法及代码示例
- Python Streamlit st.error用法及代码示例
- Python Streamlit st.video用法及代码示例
- Python Streamlit st.vega_lite_chart用法及代码示例
- Python Streamlit st.slider用法及代码示例
- Python Streamlit st.header用法及代码示例
- Python Streamlit st.container用法及代码示例
- Python Streamlit st.form_submit_button用法及代码示例
- Python Streamlit st.form用法及代码示例
- Python Streamlit st.plotly_chart用法及代码示例
- Python Streamlit st.bar_chart用法及代码示例
- Python Streamlit st.code用法及代码示例
- Python Streamlit st.experimental_memo.clear用法及代码示例
- Python Streamlit st.warning用法及代码示例
注:本文由纯净天空筛选整理自streamlit.io大神的英文原创作品 st.markdown。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。