Markdown
Use a markdown card to display content authored in Markdown.
Check the full API at ui.markdown_card.
sample_markdown = '''=The **quick** _brown_ fox jumped over the lazy dog.
Blockquote:
> The quick brown fox jumped over the lazy dog.
Unordered list:
- The quick brown fox jumped over the lazy dog.- The quick brown fox jumped over the lazy dog.- The quick brown fox jumped over the lazy dog.
Ordered list:
1. The quick brown fox jumped over the lazy dog.1. The quick brown fox jumped over the lazy dog.1. The quick brown fox jumped over the lazy dog.
Image:

Table:
| Column 1 | Column 2 | Column 3 || -------- | -------- | -------- || Item 1 | Item 2 | Item 3 || Item 1 | Item 2 | Item 3 || Item 1 | Item 2 | Item 3 |
'''
q.page['example'] = ui.markdown_card( box='1 1 3 10', title='I was made using markdown!', content=sample_markdown)