Merge branch 'fix-extra-headline-whitespace' into develop

This commit is contained in:
AlexVonB
2021-01-12 22:38:59 +01:00
3 changed files with 6 additions and 2 deletions

View File

@@ -5,7 +5,7 @@ import six
convert_heading_re = re.compile(r'convert_h(\d+)')
line_beginning_re = re.compile(r'^', re.MULTILINE)
whitespace_re = re.compile(r'[\r\n\s\t ]+')
whitespace_re = re.compile(r'[\t ]+')
html_heading_re = re.compile(r'h[1-6]')