summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrsiddharth <s@ricketyspace.net>2018-01-02 00:31:54 +0000
committerrsiddharth <s@ricketyspace.net>2018-01-02 00:31:54 +0000
commit9df739fcf2e837d0131c8d468564b46f8c7adb98 (patch)
treeac3ae1372b03787e88b9b02ad6198c8ce6eb03b9
parent6bc1aeb370ab33bbfa2dbece6d85fc22c198fdcd (diff)
md_tw.py: Add TWBlockLexer._keyify.
* md_tw.py (TWBlockLexer._keyify): New private method. (TWBlockLexer.__init__): Update method.
-rw-r--r--md_tw.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/md_tw.py b/md_tw.py
index bd9d991..6c73903 100644
--- a/md_tw.py
+++ b/md_tw.py
@@ -18,6 +18,7 @@
# along with markdown-textwrap (see COPYING). If not, see
# <http://www.gnu.org/licenses/>.
+import re
import textwrap
import mistune
@@ -29,6 +30,13 @@ class TWBlockLexer(mistune.BlockLexer):
def __init__(self, rules=None, **kwargs):
super(TWBlockLexer, self).__init__(rules, **kwargs)
+ # from mistune
+ self._key_pattern = re.compile(r'\s+')
+
+ # from mistune
+ def _keyify(self, key):
+ key = mistune.escape(key.lower(), quote=True)
+ return self._key_pattern.sub(' ', key)
class TWInlineLexer(mistune.InlineLexer):