File tree Expand file tree Collapse file tree 2 files changed +32
-1
lines changed Expand file tree Collapse file tree 2 files changed +32
-1
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
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
+
3
34
## 0.19.1 - 2023-03-02
4
35
5
36
🐛 FIX ` NoURI ` error in doc reference resolution, for texinfo builds (< gh-pr:734 > )
Original file line number Diff line number Diff line change 2
2
with bridges to [docutils](https://docutils.sourceforge.io/)
3
3
and [Sphinx](https://github.com/sphinx-doc/sphinx).
4
4
"""
5
- __version__ = "0.19.1 "
5
+ __version__ = "0.19.2 "
6
6
7
7
8
8
def setup (app ):
You can’t perform that action at this time.
0 commit comments