| # 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 |