diff options
-rw-r--r-- | markdown/__init__.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/markdown/__init__.py b/markdown/__init__.py index 5743c9b..ac11f1d 100644 --- a/markdown/__init__.py +++ b/markdown/__init__.py @@ -74,6 +74,12 @@ import postprocessors import blockparser import odict +# For backwards compatibility in the 2.0.x series +# The things defined in these modules started off in __init__.py so third +# party code might need to access them here. +from misc import * +from misc_logging import * + # Adds the ability to output html4 import html4 |