Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Support short reference image links. | Waylan Limberg | 2020-07-01 | 1 | -0/+24 |
| | | | | Fixes #894. | ||||
* | Drop support for Python 2.7 (#865) | Hugo van Kemenade | 2019-10-24 | 1 | -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 Muse | 2018-07-29 | 1 | -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. |