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: xoofx/markdig
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1.1.2
Choose a base ref
...
head repository: xoofx/markdig
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1.3.1
Choose a head ref
  • 15 commits
  • 37 files changed
  • 7 contributors

Commits on Apr 20, 2026

  1. Fix AbbreviationExtension corrupting emphasis/bold/italic resolution (#…

    …935) (#936)
    
    * test: add failing regression tests for issue #935 (abbreviation + emphasis)
    
    * fix: AbbreviationParser now substitutes post-inline-parse, fixes emphasis corruption (#935)
    
    The PostMatch hook approach (running mid-parse) produced a ContainerInline
    with IsClosed=false that disrupted FindLastContainer(), causing emphasis
    delimiters to be appended as children of the abbreviation container instead
    of as root siblings. It also had an off-by-one (i != 0 vs i != content.Start)
    that caused abbreviations to be missed when the literal started inside emphasis.
    
    Replace with a document.ProcessInlinesEnd handler that walks the fully resolved
    inline tree (after EmphasisInlineParser and LinkInlineParser have run), inserting
    AbbreviationInline/LiteralInline siblings directly into parent containers without
    any wrapper ContainerInline.
    
    Also update TestSourcePosition.TestAbbreviations to reflect the new tree shape
    (no container wrapper; empty leading literals at word boundaries are pruned).
    
    Fixes #935
    Kryptos-FR authored Apr 20, 2026
    Configuration menu
    Copy the full SHA
    5365879 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    3d69933 View commit details
    Browse the repository at this point in the history

Commits on May 7, 2026

  1. Add opt-in support for nested alert blocks (#938)

    Introduces AllowNestedAlerts on AlertExtension and AlertInlineParser
    (default: false) to allow alert blocks inside blockquotes or list items.
    
    The UseAlertBlocks() pipeline extension method exposes the new option
    via an allowNestedAlerts parameter.
    
    Resolves #853
    
    Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>
    kapsiR and claude authored May 7, 2026
    Configuration menu
    Copy the full SHA
    7dceff2 View commit details
    Browse the repository at this point in the history

Commits on May 12, 2026

  1. Remove old changelog.md

    xoofx committed May 12, 2026
    Configuration menu
    Copy the full SHA
    be4da8b View commit details
    Browse the repository at this point in the history

Commits on May 19, 2026

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

Commits on Jun 4, 2026

  1. Update readme with Alert extension details (#940)

    * Update readme with Alert extension details
    
    * Update readme.md
    
    Co-authored-by: Miha Zupan <mihazupan.zupan1@gmail.com>
    
    ---------
    
    Co-authored-by: Alexandre Mutel <alexandre_mutel@live.com>
    Co-authored-by: Miha Zupan <mihazupan.zupan1@gmail.com>
    3 people authored Jun 4, 2026
    Configuration menu
    Copy the full SHA
    31c2baa View commit details
    Browse the repository at this point in the history

Commits on Jun 13, 2026

  1. Update AGENTS.md

    xoofx committed Jun 13, 2026
    Configuration menu
    Copy the full SHA
    5dca414 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    fcbf817 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    0f98267 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    b836413 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    d7f13b0 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    9dffce5 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    bc4e399 View commit details
    Browse the repository at this point in the history

Commits on Jun 17, 2026

  1. 1 Configuration menu
    Copy the full SHA
    5006184 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    25506f2 View commit details
    Browse the repository at this point in the history
Loading