Python-Markdown / markdown

A Python implementation of John Gruber’s Markdown with Extension support.
https://python-markdown.github.io/
BSD 3-Clause "New" or "Revised" License
3.79k stars 863 forks source link

tables don't work #676

Closed abersheeran closed 6 years ago

abersheeran commented 6 years ago
import markdown

data = markdown.markdown(md, extensions=[
    'markdown.extensions.extra',
    'markdown.extensions.tables',
    'markdown.extensions.codehilite',
])

I'm so sad ... Can you help me?

ibaoger commented 5 years ago

import markdown

data = markdown.markdown(md, extensions=[ 'tables', 'codehilite', ])