ischurov / qqmbr

Mathematical layout for web and paper
http://mathbook.info/qqmathpreview
MIT License
44 stars 9 forks source link

Fix block tags inside special inline tags #3

Closed ischurov closed 7 years ago

ischurov commented 7 years ago

The following tests raise Exception

doc = r"""\blocktag Some \inlinetag[Hello \blocktag test]"""
parser = QqParser(allowed_tags={'inlinetag', 'blocktag'})
tree = parser.parse(doc)

and

doc = r"""Some \inlinetag[Hello \blocktag test
\blocktag another test]"""
parser = QqParser(allowed_tags={'inlinetag', 'blocktag'})
tree = parser.parse(doc)

Blocks #2 .

ischurov commented 7 years ago

Closed by https://github.com/ischurov/indentml/commit/6243639a614733115b35c35a607bf51a2648941e.