Spaces:
Running
Running
| 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) | |