File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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 > )
Original file line number Diff line number Diff line change 22with bridges to [docutils](https://docutils.sourceforge.io/)
33and [Sphinx](https://github.com/sphinx-doc/sphinx).
44"""
5- __version__ = "0.19.1 "
5+ __version__ = "0.19.2 "
66
77
88def setup (app ):
You can’t perform that action at this time.
0 commit comments