Skip to content
This repository has been archived by the owner on Nov 16, 2022. It is now read-only.

Commit

Permalink
Move imports into their proper place
Browse files Browse the repository at this point in the history
  • Loading branch information
chadwhitacre committed Sep 12, 2015
1 parent dd1491f commit 30e10fc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions gfm.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
from __future__ import absolute_import, division, print_function, unicode_literals

from aspen_jinja2_renderer import Renderer as Jinja2Renderer, Factory as Jinja2Factory

# setup Markdown rendering
import mistune
# get anchors for headers
from mistune_contrib.toc import TocMixin
from aspen_jinja2_renderer import Renderer as Jinja2Renderer, Factory as Jinja2Factory


# setup Markdown rendering, with anchors for headers
class TocRenderer(TocMixin, mistune.Renderer):
pass
toc = TocRenderer()
Expand Down

0 comments on commit 30e10fc

Please sign in to comment.