Skip to content

Commit

Permalink
🚀 RELEASE: v0.19.2 (#743)
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisjsewell committed Mar 7, 2023
1 parent 8508bf7 commit f4afeef
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 1 deletion.
31 changes: 31 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,36 @@
# Changelog

## 0.19.2 - 2023-03-02

✨ NEW: Add myst_fence_as_directive config (<gh-pr:742>)

Setting the following config, for example:

```python
extensions = ["myst_parser", "sphinxcontrib.mermaid"]
myst_fence_as_directive = ["mermaid"]
# optional to use directive options
myst_enable_extensions = ["attrs_block"]
```

allows for one to write:

````markdown
{caption="My caption"}
{alt="HTML alt" align=center}
```mermaid
graph LR
a --> b
```
````

and have interoperable rendering with tools like GitHub.

🎉 New contributors:

- 📚 Add `html_last_updated_fmt = ""` to conf.py to fix documentation footer, thanks to <gh-user:jeanas> (<gh-pr:691>)
- 📚 Fix the sphinx-design example, thanks to <gh-user:recfab> (<gh-pr:738>)

## 0.19.1 - 2023-03-02

🐛 FIX `NoURI` error in doc reference resolution, for texinfo builds (<gh-pr:734>)
Expand Down
2 changes: 1 addition & 1 deletion myst_parser/__init__.py
Expand Up @@ -2,7 +2,7 @@
with bridges to [docutils](https://docutils.sourceforge.io/)
and [Sphinx](https://github.com/sphinx-doc/sphinx).
"""
__version__ = "0.19.1"
__version__ = "0.19.2"


def setup(app):
Expand Down

0 comments on commit f4afeef

Please sign in to comment.