当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python Streamlit st.markdown用法及代码示例


显示格式为 Markdown 的字符串。

函数签名

st.markdown(body, unsafe_allow_html=False)
参数说明

body (str)

要显示为 Github-flavored Markdown 的字符串。可以在以下位置找到语法信息:https://github.github.com/gfm

这也支持:

unsafe_allow_html (bool)

默认情况下,在正文中找到的任何 HTML 标记都将被转义,因此被视为纯文本。通过将此参数设置为 True,可以关闭此行为。

也就是说,我们 strongly advise against it 。编写安全的 HTML 很困难,因此使用此参数可能会损害用户的安全性。有关更多信息,请参阅:

https://github.com/streamlit/streamlit/issues/152

Also note that `unsafe_allow_html` is a temporary measure and may be removed from Streamlit at any time.

如果您仍然决定启用 HTML,请在此处告诉我们您的确切用例:

https://discuss.streamlit.io/t/96

这将帮助我们提供安全的 API,让您可以随心所欲。

示例

st.markdown('Streamlit is **_really_ cool**.')

相关用法


注:本文由纯净天空筛选整理自streamlit.io大神的英文原创作品 st.markdown。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。