Skip to content

Commit

Permalink
🚀 RELEASE: v0.12.3 (#232)
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisjsewell committed Aug 26, 2020
1 parent f0dc286 commit 3c15a05
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# Change log

## 0.12.3 - 2020-26-08

✨ NEW: Add definition lists.
This addition, enabled by `myst_deflist_enable = True`, allows for "Pandoc style" definition lists to be parsed and rendered, e.g.

```md
Term 1
: Definition
```

See the [Definition Lists documentation](https://myst-parser.readthedocs.io/en/latest/using/syntax-optional.html#definition-lists) for further details.

👌 IMPROVE: mathjax_config override.
Only `mathjax_config["tex2jax"]` will now be overridden, in order to not interfere with other user configurations, such as adding TeX macros.
The configuration name has also changed from `myst_override_mathjax` to `myst_update_mathjax`.
See [Mathjax and math parsing](https://myst-parser.readthedocs.io/en/latest/using/syntax.html#mathjax-and-math-parsing) for further details.

## 0.12.2 - 2020-25-08

✨ NEW: Add the `eval-rst` directive
Expand Down
2 changes: 1 addition & 1 deletion myst_parser/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.12.2"
__version__ = "0.12.3"


def setup(app):
Expand Down

0 comments on commit 3c15a05

Please sign in to comment.