frostming / marko

A markdown parser with high extensibility.

Home Page:https://marko-py.readthedocs.io/en/latest/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

How to convert tables?

daifiyum opened this issue · comments

I converted the table through 'mark. convert (' mark down... ')' and the table was not parsed.

Use the GFM instance:

from marko.ext.gfm import gfm
gfm.convert(markdown_text)

Thanks~