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: Python-Markdown/markdown
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 3.6
Choose a base ref
...
head repository: Python-Markdown/markdown
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 3.7
Choose a head ref
  • 5 commits
  • 10 files changed
  • 3 contributors

Commits on Mar 18, 2024

  1. Fixed links to source code on GitHub from the documentation

    With the current version, if you open e.g. this page:
    https://python-markdown.github.io/reference/markdown/blockprocessors/
    
    The ‹› links on the right side of the page will point to URLs like
    https://github.com/Python-Markdown/markdown/tree/3.6//home/runner/work/markdown/markdown/md/markdown/blockprocessors.py
    
    This commit fixes them by replacing `filepath` with `relative_filepath`.
    mitya57 authored and waylan committed Mar 18, 2024
    Configuration menu
    Copy the full SHA
    993b57b View commit details
    Browse the repository at this point in the history

Commits on Apr 25, 2024

  1. Refactor abbr Extension

    A new `AbbrTreeprocessor` has been introduced, which replaces the now
    deprecated `AbbrInlineProcessor`. Abbreviation processing now happens
    after Attribute Lists, avoiding a conflict between the two extensions.
    Fixes #1460.
    
    The `AbbrPreprocessor` class has been renamed to `AbbrBlockprocessor`, which
    better reflects what it is. `AbbrPreprocessor` has been deprecated.
    
    A call to `Markdown.reset()` now clears all previously defined abbreviations.
    waylan authored Apr 25, 2024
    Configuration menu
    Copy the full SHA
    ec8c305 View commit details
    Browse the repository at this point in the history

Commits on Jun 11, 2024

  1. Abbr Extension: Definition Sorting and Glossary storage

    * `AbbrTreeprocessor` now sorts the abbreviation
    list by length before processing the element tree
    
    This ensures that multi-word abbreviations are
    implemented even if an abbreviation exists for
    one of those component words.
    
    * Added handling for empty abbreviations.
    
    * Added a `glossary` option for the `abbr` extension
    which accepts a dictionary.
    nbanyan authored Jun 11, 2024
    Configuration menu
    Copy the full SHA
    33359fa View commit details
    Browse the repository at this point in the history

Commits on Aug 16, 2024

  1. Configuration menu
    Copy the full SHA
    bd836a1 View commit details
    Browse the repository at this point in the history
  2. Bump version to 3.7

    waylan committed Aug 16, 2024
    Configuration menu
    Copy the full SHA
    da03cd6 View commit details
    Browse the repository at this point in the history
Loading