anunay.aatipamula
base skeleton
ec0c688
raw
history blame contribute delete
191 Bytes
import textwrap
from IPython.display import Markdown
def to_markdown(text):
text = text.replace('•', ' *')
return Markdown(textwrap.indent(text, '> ', predicate=lambda _: True))