test/spec_tests.py: Make ready for spec.txt from cmark-gfm project.

This allows easier checking of our GFM dialect compatibility.
This commit is contained in:
Martin Mitas 2019-05-07 23:10:46 +02:00
parent e43f73a3e6
commit 1757ff55c6

View File

@ -91,7 +91,8 @@ def get_tests(specfile):
for line in specf:
line_number = line_number + 1
l = line.strip()
if l == "`" * 32 + " example":
#if l == "`" * 32 + " example":
if re.match("`{32} example( [a-z]{1,})?", l):
state = 1
elif state == 2 and l == "`" * 32:
state = 0