blob: f4a9e55cf73ca2c04b1079462b1e98532a284568 [file] [view] [edit]
# Change Log
## 0.5.4 - 2020-09-08
✨ NEW: Add `anchors_plugin` for headers, which can produce:
```html
<h1 id="title-string">Title String <a class="header-anchor" href="#title-string">ΒΆ</a></h1>
```
## 0.5.3 - 2020-09-04
πŸ› Fixed an undefined variable in the reference block.
## 0.5.2 - 2020-08-22
πŸ› Fixed an `IndexError` in `container_plugin`, when there is no newline on the closing tag line.
## 0.5.1 - 2020-08-21
⬆️ UPGRADE: attrs -> v20
This is not breaking, since it only deprecates Python 3.4 (see [CHANGELOG.rst](https://github.com/python-attrs/attrs/blob/master/CHANGELOG.rst))
## 0.5.0 - 2020-08-18
### Added ✨
- `deflist` and `dollarmath` plugins (see [plugins list](https://markdown-it-py.readthedocs.io/en/latest/plugins.html)).
### Improved πŸ‘Œ
- Added benchmarking tests and CI (see <https://executablebooks.github.io/markdown-it-py/dev/bench/>)
- Improved performance of computing ordinals (=> 10-15% parsing speed increase).
Thanks to [@sildar](https://github.com/sildar)!
### Fixed πŸ›
- Stopped empty lines at the end of the document, after certain list blocks, raising an exception (#36).
- Allow myst-role to accept names containing digits (0-9).
## 0.4.9 - 2020-08-11
### Added ✨
- `containers` plugin (see [plugins list](https://markdown-it-py.readthedocs.io/en/latest/plugins.html))
### Documented πŸ“š
- Plugins and improved contributing section