thoth_app / test_md.py
GitHub Actions
Sync from GitHub
4f54856
raw
history blame contribute delete
226 Bytes
import streamlit as st
st.markdown('''<div style="border: 1px solid red; padding: 20px;">
## A Markdown header
**bold** and _italic_
- list item 1
- list item 2
`python
print('Test')
`
</div>''', unsafe_allow_html=True)