diff --git a/dactyl/page.py b/dactyl/page.py index 483eee4..0ec5eee 100644 --- a/dactyl/page.py +++ b/dactyl/page.py @@ -270,8 +270,8 @@ def html_content(self, context, regen=False, save=True): md = self.md_content(context) logger.info("... parsing markdown...") - html = markdown(md, extensions=["markdown.extensions.extra"], - lazy_ol=False) + html = markdown(md, extensions=["markdown.extensions.extra", + "markdown.extensions.sane_lists"]) # Apply raw-HTML-string-based filters here for filter_name in self.filters(): diff --git a/dactyl/version.py b/dactyl/version.py index 85b551d..65819b8 100644 --- a/dactyl/version.py +++ b/dactyl/version.py @@ -1 +1 @@ -__version__ = '0.10.2' +__version__ = '0.10.3' diff --git a/releasenotes.md b/releasenotes.md index 5875dd2..d1bf000 100644 --- a/releasenotes.md +++ b/releasenotes.md @@ -1,3 +1,7 @@ +# v0.10.3 Release Notes + +Updates compatibility with Python-Markdown so that ordered lists start with the intended number again. + # v0.10.2 Release Notes Fixes a bug that caused ElasticSearch uploads to fail.