Skip to content

Commit

Permalink
Add table and footnote extensions
Browse files Browse the repository at this point in the history
  • Loading branch information
neuralsandwich committed Jul 23, 2017
1 parent b65d091 commit 700b395
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,5 @@ Version 0.0.1

* Generate HTML from Markdown
* jinja2 templating is processed in HTML files
* Installable through setup.py
* Can generate basic template
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
setup(name='stone-site',

# Versions should comply with PEP440. For a discussion on single-sourcing
version='0.1a1.dev3',
version='0.1a1.dev4',


description='Static site generator',
Expand Down
3 changes: 2 additions & 1 deletion stone/stone.py
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,8 @@ def generate_site(args):
sites = ConfigLoader().load(args.site_root)

markdown_renderer = markdown.Markdown(
extensions=['markdown.extensions.meta'])
extensions=['markdown.extensions.meta', 'markdown.extensions.tables',
'markdown.extensions.footnotes'])
for site in sites:
env = Environment(
loader=FileSystemLoader(site.templates),
Expand Down

0 comments on commit 700b395

Please sign in to comment.