Skip to content

Commit

Permalink
fix: Support Markdown tables. (#5)
Browse files Browse the repository at this point in the history
  • Loading branch information
Luke Sneeringer authored Aug 4, 2020
1 parent 401b5c0 commit e5a2d30
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion aip_site/md.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class MarkdownDocument(str):
def __init__(self, content: str, *, toc_title: str = 'Contents'):
self._content = content
self._engine = markdown.Markdown(
extensions=[_superfences, 'toc'],
extensions=[_superfences, 'tables', 'toc'],
extension_configs={
'toc': {
'title': toc_title,
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

setup(
name='aip-site-generator',
version='0.1.1',
version='0.1.2',
license='Apache 2.0',
author='Luke Sneeringer',
author_email='[email protected]',
Expand Down

0 comments on commit e5a2d30

Please sign in to comment.