Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build(deps): bump mdit-py-plugins from 0.4.1 to 0.4.2 in /docs (#2209)
Bumps [mdit-py-plugins](https://github.com/executablebooks/mdit-py-plugins) from 0.4.1 to 0.4.2. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/executablebooks/mdit-py-plugins/releases">mdit-py-plugins's releases</a>.</em></p> <blockquote> <h2>v0.4.2</h2> <h2>What's Changed</h2> <ul> <li>👌 Improve parsing of nested amsmath by <a href="https://github.com/chrisjsewell"><code>@chrisjsewell</code></a> in <a href="https://redirect.github.com/executablebooks/mdit-py-plugins/pull/119">executablebooks/mdit-py-plugins#119</a></li> <li>✨ Add <code>allowed</code> option for inline/block attributes by <a href="https://github.com/joker21663"><code>@joker21663</code></a> in <a href="https://redirect.github.com/executablebooks/mdit-py-plugins/pull/115">executablebooks/mdit-py-plugins#115</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/joker21663"><code>@joker21663</code></a> made their first contribution in <a href="https://redirect.github.com/executablebooks/mdit-py-plugins/pull/115">executablebooks/mdit-py-plugins#115</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/executablebooks/mdit-py-plugins/compare/v0.4.1...v0.4.2">https://github.com/executablebooks/mdit-py-plugins/compare/v0.4.1...v0.4.2</a></p> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/executablebooks/mdit-py-plugins/blob/master/CHANGELOG.md">mdit-py-plugins's changelog</a>.</em></p> <blockquote> <h2>0.4.2 - 2024-09-09</h2> <ul> <li> <p>👌 Improve parsing of nested amsmath</p> <p>The previous logic was problematic for amsmath blocks nested in other blocs (such as blockquotes)</p> <p>The new parsing code now principally follows the logic in <code>markdown_it/rules_block/fence.py</code> (see also <a href="https://spec.commonmark.org/0.30/#fenced-code-blocks">https://spec.commonmark.org/0.30/#fenced-code-blocks</a>), except that:</p> <ol> <li>it allows for a closing tag on the same line as the opening tag, and</li> <li>it does not allow for an opening tag without closing tag (i.e. no auto-closing)</li> </ol> </li> <li> <p>✨ Add <code>allowed</code> option for inline/block attributes</p> <p>The <code>allowed</code> option accepts a list of allowed attribute names. If not <code>None</code>, any attributes not in this list will be removed and placed in the token's meta under the key <code>"insecure_attrs"</code>.</p> </li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/executablebooks/mdit-py-plugins/commit/2236898619148b33c51bae3c1aca380618c82db7"><code>2236898</code></a> 🚀 Release v0.4.2 (<a href="https://redirect.github.com/executablebooks/mdit-py-plugins/issues/121">#121</a>)</li> <li><a href="https://github.com/executablebooks/mdit-py-plugins/commit/10d5b4d05eb667b55695ddb132414d9b8f7ba760"><code>10d5b4d</code></a> ✨ Add <code>allowed</code> option for inline/block attributes (<a href="https://redirect.github.com/executablebooks/mdit-py-plugins/issues/115">#115</a>)</li> <li><a href="https://github.com/executablebooks/mdit-py-plugins/commit/3f7fcc6794f496d5d5e40335b361a20fc82ca3d1"><code>3f7fcc6</code></a> 👌 Improve parsing of nested amsmath (<a href="https://redirect.github.com/executablebooks/mdit-py-plugins/issues/119">#119</a>)</li> <li><a href="https://github.com/executablebooks/mdit-py-plugins/commit/637f7e70a522a7eef6f7696fea0b7baa481933af"><code>637f7e7</code></a> 🔧 codecov no longer works on forks (<a href="https://redirect.github.com/executablebooks/mdit-py-plugins/issues/116">#116</a>)</li> <li>See full diff in <a href="https://github.com/executablebooks/mdit-py-plugins/compare/v0.4.1...v0.4.2">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=mdit-py-plugins&package-manager=pip&previous-version=0.4.1&new-version=0.4.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
- Loading branch information