aboutsummaryrefslogtreecommitdiffstats
path: root/markdown/extensions/legacy_em.py
diff options
context:
space:
mode:
authorWaylan Limberg <waylan.limberg@icloud.com>2018-07-31 13:30:02 -0400
committerGitHub <noreply@github.com>2018-07-31 13:30:02 -0400
commit7dad12c07e3e701da42474696398cb32e5c9979f (patch)
tree2a2bd4d52e871d64c7e488b55a3440015a9bb4e8 /markdown/extensions/legacy_em.py
parentf261ffd065bcfea13d41a9861232155816c5933f (diff)
downloadmarkdown-7dad12c07e3e701da42474696398cb32e5c9979f.tar.gz
markdown-7dad12c07e3e701da42474696398cb32e5c9979f.tar.bz2
markdown-7dad12c07e3e701da42474696398cb32e5c9979f.zip
Deprecate md_globals from extension API. (#697)
In the past, most of the config was defined using globals. Today all of the config is held on the class instance. Therefore, the `md_globals` parameter is no longer necessary.
Diffstat (limited to 'markdown/extensions/legacy_em.py')
-rw-r--r--markdown/extensions/legacy_em.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/markdown/extensions/legacy_em.py b/markdown/extensions/legacy_em.py
index 5cc0f6d..be5b226 100644
--- a/markdown/extensions/legacy_em.py
+++ b/markdown/extensions/legacy_em.py
@@ -22,7 +22,7 @@ STRONG_RE = r'(\*{2}|_{2})(.+?)\1'
class LegacyEmExtension(Extension):
""" Add legacy_em extension to Markdown class."""
- def extendMarkdown(self, md, md_globals):
+ def extendMarkdown(self, md):
""" Modify inline patterns. """
md.inlinePatterns.register(SimpleTagInlineProcessor(STRONG_RE, 'strong'), 'strong', 40)
md.inlinePatterns.register(SimpleTagInlineProcessor(EMPHASIS_RE, 'em'), 'emphasis', 30)