Markdown Library
Markdown is a lightweight markup language based on the formatting conventions that people naturally use in email. See Attack Lab for more details.
Code
'import('lib-markdown')
print(markdown("""
__Bold__, _Italic_, ___Bold Italic___, [Link](example.com)
1. List
1. with
- nested
- elements

"""))'
Example Output
Bold, Italic, Bold Italic, Link
1. List
1. with
- nested
- elements
