thoth_app / test2.py
GitHub Actions
Sync from GitHub
4f54856
raw
history blame contribute delete
245 Bytes
import streamlit as st
import io
import sys
from markdown_it import MarkdownIt
md = MarkdownIt('commonmark', {'html': True})
res = md.render('''<div class="thoth-msg-ai">
**Bold text**
`python
print("Hello world")
`
</div>''')
print(res)