Skip to content

Commit f4afeef

Browse files
authored
🚀 RELEASE: v0.19.2 (#743)
1 parent 8508bf7 commit f4afeef

File tree

2 files changed

+32
-1
lines changed

2 files changed

+32
-1
lines changed

CHANGELOG.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,36 @@
11
# Changelog
22

3+
## 0.19.2 - 2023-03-02
4+
5+
✨ NEW: Add myst_fence_as_directive config (<gh-pr:742>)
6+
7+
Setting the following config, for example:
8+
9+
```python
10+
extensions = ["myst_parser", "sphinxcontrib.mermaid"]
11+
myst_fence_as_directive = ["mermaid"]
12+
# optional to use directive options
13+
myst_enable_extensions = ["attrs_block"]
14+
```
15+
16+
allows for one to write:
17+
18+
````markdown
19+
{caption="My caption"}
20+
{alt="HTML alt" align=center}
21+
```mermaid
22+
graph LR
23+
a --> b
24+
```
25+
````
26+
27+
and have interoperable rendering with tools like GitHub.
28+
29+
🎉 New contributors:
30+
31+
- 📚 Add `html_last_updated_fmt = ""` to conf.py to fix documentation footer, thanks to <gh-user:jeanas> (<gh-pr:691>)
32+
- 📚 Fix the sphinx-design example, thanks to <gh-user:recfab> (<gh-pr:738>)
33+
334
## 0.19.1 - 2023-03-02
435

536
🐛 FIX `NoURI` error in doc reference resolution, for texinfo builds (<gh-pr:734>)

myst_parser/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
with bridges to [docutils](https://docutils.sourceforge.io/)
33
and [Sphinx](https://github.com/sphinx-doc/sphinx).
44
"""
5-
__version__ = "0.19.1"
5+
__version__ = "0.19.2"
66

77

88
def setup(app):

0 commit comments

Comments
 (0)