diff options
| author | Wang Mingyu <wangmy@fujitsu.com> | 2026-05-19 19:39:04 +0800 |
|---|---|---|
| committer | Khem Raj <khem.raj@oss.qualcomm.com> | 2026-05-21 07:30:58 -0700 |
| commit | edeaf332695551dbde2edb065c978e75447624de (patch) | |
| tree | 2b7b3abeaba273f285cbaf9f70637e7101f0b454 /meta-python/recipes-devtools/python/python3-myst-parser_5.1.0.bb | |
| parent | e0676322d0ce5e8dec306e47ed3633ca97492f54 (diff) | |
| download | meta-openembedded-edeaf332695551dbde2edb065c978e75447624de.tar.gz | |
python3-myst-parser: upgrade 5.0.0 -> 5.1.0
New Features
============
- Add "alert" syntax extension for GFM alerts (e.g. > [!NOTE])
- Add "gfm_autolink" syntax extension for GFM autolinks
- Add myst_strikethrough_single_tilde config option to allow single tilde (~)
for strikethrough
- Add myst_colon_fence_exact_match config option to require the closing colon
fence to have exactly the same number of colons as the opening
Improvements =============
- Update myst_gfm_only mode to use the unified gfm_plugin, which now includes
GFM autolinks, alerts, and improved strikethrough/tasklist handling
- Improve MathJax 4 compatibility for Sphinx 9
- Stop directive-option parsing at colon fences, fixing nested colon fence
directives
Bug Fixes ===========
- Use docname instead of source path in warning locations
- Correctly encode & in Markdown URLs by not HTML-escaping refuri
- Fix RemovedInSphinx10Warning for inventory item iteration
- Pin mdit-py-plugins>=0.6.1 for nested field list fix
Dependency Upgrades ====================
- Upgrade to markdown-it-py~=4.2 and mdit-py-plugins~=0.6
- Update pygments requirement from <2.20 to <2.21
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-myst-parser_5.1.0.bb')
| -rw-r--r-- | meta-python/recipes-devtools/python/python3-myst-parser_5.1.0.bb | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-myst-parser_5.1.0.bb b/meta-python/recipes-devtools/python/python3-myst-parser_5.1.0.bb new file mode 100644 index 0000000000..6471e370cc --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-myst-parser_5.1.0.bb | |||
| @@ -0,0 +1,21 @@ | |||
| 1 | SUMMARY = "An extended commonmark compliant parser, with bridges to docutils/sphinx" | ||
| 2 | HOMEPAGE = "https://github.com/executablebooks/MyST-Parser" | ||
| 3 | LICENSE = "MIT" | ||
| 4 | LIC_FILES_CHKSUM = "file://LICENSE;md5=a38a1697260a7ad7bf29f44b362db1fc" | ||
| 5 | |||
| 6 | SRC_URI[sha256sum] = "ab69322dc6719dcc7f296479dbb70181b66df6ed315064f92dbc85c0e1bf2f02" | ||
| 7 | |||
| 8 | inherit pypi python_flit_core | ||
| 9 | |||
| 10 | PYPI_PACKAGE = "myst_parser" | ||
| 11 | |||
| 12 | RDEPENDS:${PN} = "\ | ||
| 13 | python3-docutils \ | ||
| 14 | python3-jinja2 \ | ||
| 15 | python3-markdown-it-py \ | ||
| 16 | python3-mdit-py-plugins \ | ||
| 17 | python3-pyyaml \ | ||
| 18 | python3-sphinx \ | ||
| 19 | " | ||
| 20 | |||
| 21 | BBCLASSEXTEND = "native nativesdk" | ||
