module documentation

Legacy Em Extension for Python-Markdown ======================================= This extension provides legacy behavior for _connected_words_. Copyright 2015-2018 The Python Markdown Project License: [BSD](https://opensource.org/licenses/bsd-license.php)

Class LegacyEmExtension Add legacy_em extension to Markdown class.
Class LegacyUnderscoreProcessor Emphasis processor for handling strong and em matches inside underscores.
Function makeExtension Return an instance of the LegacyEmExtension
Constant EMPHASIS_RE Undocumented
Constant STRONG_EM_RE Undocumented
Constant STRONG_RE Undocumented
def makeExtension(**kwargs): (source)

Return an instance of the LegacyEmExtension

EMPHASIS_RE: str = (source)

Undocumented

Value
'(_)([^_]+)\\1'
STRONG_EM_RE: str = (source)

Undocumented

Value
'(_)\\1(?!\\1)([^_]+?)\\1(?!\\1)(.+?)\\1{3}'
STRONG_RE: str = (source)

Undocumented

Value
'(_{2})(.+?)\\1'