Skip to content

Latest commit

 

History

History
17 lines (11 loc) · 354 Bytes

20220904164714.md

File metadata and controls

17 lines (11 loc) · 354 Bytes

There is a module for everything in Python!

Convert Markdown syntax into HTML:

from markdown import markdown

markdown("# this is my header") '

this is my header

'

markdown("> a cool quote") '

\n

a cool quote

\n
'

markdown("emphasized text") '

emphasized text

'


#html #markdown