summaryrefslogtreecommitdiff
path: root/tests/test_syntax/inline/test_images.py
Commit message (Collapse)AuthorAgeFilesLines
* Support short reference image links.Waylan Limberg2020-07-011-0/+24
| | | | Fixes #894.
* Drop support for Python 2.7 (#865)Hugo van Kemenade2019-10-241-1/+0
| | | | | | | * Python syntax upgraded using `pyupgrade --py3-plus` * Travis no longer uses `sudo`. See https://blog.travis-ci.com/2018-11-19-required-linux-infrastructure-migration See #760 for Python Version Support Timeline and related dicussion.
* Fix double escaping of amp in attributes (#670)Isaac Muse2018-07-291-0/+161
Serializer should only escape & in attributes if not part of & Better regex avoid Unicode and `_` in amp detection. In general, we don't want to escape already escaped content, but with code content, we want literal representations of escaped content, so have code content explicitly escape its content before placing in AtomicStrings. Closes #669.