Pythonでマークダウンをパースする方法のメモです.

目次

pip3 install markdown
import markdown
# 変数strはマークダウン形式の文字列
html = markdown.markdown(str)