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: markedjs/marked
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v18.0.4
Choose a base ref
...
head repository: markedjs/marked
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v18.0.5
Choose a head ref
  • 7 commits
  • 6 files changed
  • 4 contributors

Commits on May 25, 2026

  1. chore(deps-dev): bump markdown-it from 14.1.1 to 14.2.0 (#3977)

    Bumps [markdown-it](https://github.com/markdown-it/markdown-it) from 14.1.1 to 14.2.0.
    - [Changelog](https://github.com/markdown-it/markdown-it/blob/master/CHANGELOG.md)
    - [Commits](markdown-it/markdown-it@14.1.1...14.2.0)
    
    ---
    updated-dependencies:
    - dependency-name: markdown-it
      dependency-version: 14.2.0
      dependency-type: direct:development
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored May 25, 2026
    Configuration menu
    Copy the full SHA
    2cf1fd0 View commit details
    Browse the repository at this point in the history

Commits on May 26, 2026

  1. chore(deps-dev): bump marked-man from 2.1.0 to 2.1.1 (#3978)

    Bumps [marked-man](https://github.com/kapouer/marked-man) from 2.1.0 to 2.1.1.
    - [Changelog](https://github.com/kapouer/marked-man/blob/master/CHANGES.md)
    - [Commits](kapouer/marked-man@2.1.0...2.1.1)
    
    ---
    updated-dependencies:
    - dependency-name: marked-man
      dependency-version: 2.1.1
      dependency-type: direct:development
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored May 26, 2026
    Configuration menu
    Copy the full SHA
    763f729 View commit details
    Browse the repository at this point in the history

Commits on Jun 1, 2026

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

Commits on Jun 3, 2026

  1. chore(deps-dev): bump @arethetypeswrong/cli from 0.18.2 to 0.18.3 (#3985

    )
    
    Bumps [@arethetypeswrong/cli](https://github.com/arethetypeswrong/arethetypeswrong.github.io/tree/HEAD/packages/cli) from 0.18.2 to 0.18.3.
    - [Release notes](https://github.com/arethetypeswrong/arethetypeswrong.github.io/releases)
    - [Changelog](https://github.com/arethetypeswrong/arethetypeswrong.github.io/blob/main/packages/cli/CHANGELOG.md)
    - [Commits](https://github.com/arethetypeswrong/arethetypeswrong.github.io/commits/@arethetypeswrong/cli@0.18.3/packages/cli)
    
    ---
    updated-dependencies:
    - dependency-name: "@arethetypeswrong/cli"
      dependency-version: 0.18.3
      dependency-type: direct:development
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Jun 3, 2026
    Configuration menu
    Copy the full SHA
    95f98ec View commit details
    Browse the repository at this point in the history
  2. chore(deps-dev): bump eslint from 10.4.0 to 10.4.1 (#3986)

    Bumps [eslint](https://github.com/eslint/eslint) from 10.4.0 to 10.4.1.
    - [Release notes](https://github.com/eslint/eslint/releases)
    - [Commits](eslint/eslint@v10.4.0...v10.4.1)
    
    ---
    updated-dependencies:
    - dependency-name: eslint
      dependency-version: 10.4.1
      dependency-type: direct:development
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Jun 3, 2026
    Configuration menu
    Copy the full SHA
    c6e667b View commit details
    Browse the repository at this point in the history

Commits on Jun 4, 2026

  1. fix: parse empty list item with trailing space (#3984)

    A bare list marker followed only by a space (e.g. `- ` or `1. `) was not
    recognized as a list and fell through to a paragraph, so `- ` rendered as
    `<p>- </p>` instead of an empty list item. A marker with no trailing space
    (`-`, `1.`) and an empty item that continues an existing list were already
    handled correctly, making the behavior inconsistent.
    
    The block `list` rule required content after the marker's whitespace
    (`[ \t][^\n]+?`), so a marker followed only by whitespace failed to match.
    Relax it to `[ \t][^\n]*?` so a marker with trailing whitespace and no
    content still starts a list, matching the CommonMark reference and
    markdown-it.
    
    To keep CommonMark's rule that an empty list item cannot interrupt a
    paragraph, the paragraph list-interrupt patterns now require a non-blank
    character after the marker, so `foo\n+ ` stays a single paragraph while
    `foo\n- bar` still interrupts.
    sarathfrancis90 authored Jun 4, 2026
    Configuration menu
    Copy the full SHA
    b55410f View commit details
    Browse the repository at this point in the history
  2. chore(release): 18.0.5 [skip ci]

    ## [18.0.5](v18.0.4...v18.0.5) (2026-06-04)
    
    ### Bug Fixes
    
    * parse empty list item with trailing space ([#3984](#3984)) ([b55410f](b55410f))
    semantic-release-bot committed Jun 4, 2026
    Configuration menu
    Copy the full SHA
    4063c63 View commit details
    Browse the repository at this point in the history
Loading