Spaces:
Running
Running
File size: 245 Bytes
4f54856 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | 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)
|