Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: executablebooks/mdit-py-plugins
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.4.1
Choose a base ref
...
head repository: executablebooks/mdit-py-plugins
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.4.2
Choose a head ref
  • 4 commits
  • 8 files changed
  • 3 contributors

Commits on Sep 2, 2024

  1. Configuration menu
    Copy the full SHA
    637f7e7 View commit details
    Browse the repository at this point in the history

Commits on Sep 7, 2024

  1. 👌 Improve parsing of nested amsmath (#119)

    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)
    chrisjsewell authored Sep 7, 2024
    Configuration menu
    Copy the full SHA
    3f7fcc6 View commit details
    Browse the repository at this point in the history

Commits on Sep 9, 2024

  1. ✨ Add allowed option for inline/block attributes (#115)

    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"`.
    
    Co-authored-by: maximkurbatov <[email protected]>
    Co-authored-by: Chris Sewell <[email protected]>
    3 people authored Sep 9, 2024
    Configuration menu
    Copy the full SHA
    10d5b4d View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    2236898 View commit details
    Browse the repository at this point in the history
Loading