Skip to content

Commit

Permalink
πŸš€ Release v0.4.2 (#121)
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisjsewell committed Sep 9, 2024
1 parent 10d5b4d commit 2236898
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# Change Log

## 0.4.2 - 2024-09-09

- πŸ‘Œ Improve parsing of nested amsmath

The previous logic was problematic for amsmath blocks nested in other blocs (such as blockquotes)

The new parsing code now principally follows the logic in `markdown_it/rules_block/fence.py`
(see also <https://spec.commonmark.org/0.30/#fenced-code-blocks>),
except that:

1. it allows for a closing tag on the same line as the opening tag, and
2. it does not allow for an opening tag without closing tag (i.e. no auto-closing)

- ✨ Add `allowed` option for inline/block attributes

The `allowed` option accepts a list of allowed attribute names.
If not ``None``, any attributes not in this list will be removed
and placed in the token's meta under the key `"insecure_attrs"`.

## 0.4.1 - 2024-05-12

* πŸ‘Œ Add option for footnotes references to always be matched
Expand Down
2 changes: 1 addition & 1 deletion mdit_py_plugins/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.4.1"
__version__ = "0.4.2"

0 comments on commit 2236898

Please sign in to comment.