## 1.7.1 (2026-07-09)

### Bug fixes

Remove a leftover `console.log` call.

## 1.7.0 (2026-07-08)

### Bug fixes

Allow starting indented tables directly below paragraphs.

### New features

`Line.markers` is now public, since it may be necessary to access it in block parsers that cover multiple lines.

## 1.6.4 (2026-05-28)

### Bug fixes

Fix an issue in parsing GFM tables nested under lists or quotes.

Support autolinking of URLs with a port number. Update github links

## 1.6.3 (2026-01-06)

### Bug fixes

Fix an issue that caused the parser to re-parse much more than it needed to when reusable content ends in a single list element after many non-list elements.

## 1.6.2 (2025-12-22)

### Bug fixes

Nested parses in fenced blocks are now marked as bracketed.

## 1.6.1 (2025-12-06)

### Bug fixes

Fix an issue where, if a composite node handler added a marker before returning false, that token was parsed twice.

## 1.6.0 (2025-11-03)

### Bug fixes

When a composite block adds a node while ending, make sure the composite node covers that end token.

### New features

Export the opening delimiters used for standard links and images, so that extension code can look for them.

## 1.5.1 (2025-10-20)

### Bug fixes

Fix an issue where `findOpeningDelimiter` could return the position of a close delimiter.

## 1.5.0 (2025-10-18)

### New features

A `getDelimiterAt` method on inline contexts makes it possible to get information about opening delimiters.

## 1.4.3 (2025-04-27)

### Bug fixes

Run the HTML parser on HTML comment blocks, since those may include non-comment content at their end.

## 1.4.2 (2025-02-24)

### Bug fixes

Move some dependencies to dev dependencies.

## 1.4.1 (2025-02-07)

### Bug fixes

Make sure TypeScript's new resolution styles can find the type declarations for the CommonJS files.

## 1.4.0 (2025-01-07)

### Bug fixes

Fix a regression in the autolink extension that made it fail to match some kinds of email addresses.

### New features

The new `BlockContext.peekLine` method can be used to scan the line ahead of the current one.

## 1.3.2 (2024-10-29)

### Bug fixes

Fix a quadratic slowdown in the Autolink extension on parsing text containing extremely long words.

## 1.3.1 (2024-09-02)

### Bug fixes

Fix emphasis parsing to properly test for punctuation on platforms that support regular expression unicode categories.

Fix an issue where dashes right after a paragraph weren't parsed as horizontal rules when setext headers are disabled.

## 1.3.0 (2024-04-03)

### Bug fixes

GFM autolinks will no longer include the closing bracket of a surrounding link or image.

### New features

`InlineContext.hasOpenLink` can now be used to query whether there is an unclosed link or image marker before the current token.

## 1.2.0 (2023-12-25)

### Bug fixes

Properly require whitespace before link titles. Parse autolinks as their own nodes

### New features

Wrap autolinks in an `Autolink` syntax node, rather than just `URL`, and exclude the wrapping angle brackets from the `URL` nodes.

## 1.1.2 (2023-12-07)

### Bug fixes

Fix a bug that could cause blockquote markers to be attached to the wrong parent node, causing them to overlap with sibling syntax nodes.

## 1.1.1 (2023-11-17)

### Bug fixes

Make sure GFM autolinking accepts URLs like test.co.uk

Fix a bug in `Autolink` that made it fail to accept some URLs with hyphens.

## 1.1.0 (2023-08-03)

### New features

The new `Autolink` extension (included in the `GFM` extension bundle) marks some types of URLs even without angle brackets.

## 1.0.5 (2023-06-30)

### Bug fixes

Fix another issue in reuse of nodes when the input has gaps.

## 1.0.4 (2023-06-29)

### Bug fixes

Fix another bug in incremental parsing across input gaps.

## 1.0.3 (2023-06-22)

### Bug fixes

Only parse list items as tasks when there is whitespace after the checkbox brackets. Remove an unnecessary regexp operator

Fix a crash doing an incremental parse on input ranges with gaps between them.

## 1.0.2 (2022-09-21)

### Bug fixes

In the stikethrough extension, ignore opening marks with a space after and closing marks with a space before them.

## 1.0.1 (2022-06-29)

### Bug fixes

Fix a crash that could occur when there were gaps in the parseable ranges right at the start of a line.

## 1.0.0 (2022-06-06)

### New features

First stable version.

## 0.16.1 (2022-05-20)

### Bug fixes

Fix a bug that prevented style tags from built-in extensions from being applied.

## 0.16.0 (2022-04-20)

### New features

This package now attached highlighting information to its syntax tree.

It is now possible to include highlighting information when defining nodes in extensions via `NodeSpec.style`.

## 0.15.6 (2022-03-18)

### Bug fixes

Fix a bug where GFM tables occurring directly below a paragraph weren't recognized.

## 0.15.5 (2022-02-18)

### New features

The `BlockContext` type now has a `depth` property providing the amount of parent nodes, and a `parentType` method allowing code to inspect the type of those nodes.

## 0.15.4 (2022-02-02)

### Bug fixes

Fix compatibility fallback for engines with RegExp `\p` support.

## 0.15.3 (2021-12-13)

### Bug fixes

Fix a bug where, if there were multiple extensions passed to the editor, the `wrap` option got dropped from the resulting configuration.

## 0.15.2 (2021-11-08)

### Bug fixes

Fix a bug where an ordered list item after a nested bullet list would get treated as part of the bullet list item.

## 0.15.1 (2021-10-11)

### Bug fixes

Fix a bug that caused `endLeafBlock` configuration to be ignored by the parser.

## 0.15.0 (2021-08-11)

### Breaking changes

The module name has changed from `lezer-markdown` to `@lezer/markdown`.

`MarkdownParser` now extends `Parser` and follows its interface.

The Markdown parser no longer has its own support for nested parsing (but can be wrapped with `parseCode` to get a similar effect).

### New features

The new `parseCode` function can be used to set up a mixed-language parser for Markdown.

## 0.14.5 (2021-05-12)

### Bug fixes

Fix an issue were continued paragraph lines starting with tabs could cause the parser to create a tree with invalid node positions.

## 0.14.4 (2021-03-09)

### Bug fixes

Fix a bug where an unterminated nested code block could call a nested parser with a start position beyond the end of the document.

Fix a bug where the parser could return an invalid tree when `forceFinish` was called during a nested parse.

## 0.14.3 (2021-02-22)

### Breaking changes

`parseInline` has been moved to `MarkdownParser` so that it can also be called from an inline context.

### New features

Heading nodes now have different types based on their level.

The `elt` helper method can now be called with a `Tree` to wrap the result of a nested parse in an element.

The `startNested` method is now exported.

## 0.14.2 (2021-02-12)

### Bug fixes

`BlockParser.parse`'s exported type was missing an argument.

Fix a bug that would cause incorrect offsets for children nested two deep in an element passed to `BlockContext.addElement`.

## 0.14.1 (2021-02-11)

### Bug fixes

Fix table parsing when header cells are empty.

## 0.14.0 (2021-02-10)

### New features

Add an extension interface. The `configure` method now takes more options, allowing client code to define new syntax node types and parse logic.

Add extensions for subscript, superscript, strikethrough, tables, and task lists to the distribution.

## 0.13.0 (2020-12-04)

### Breaking changes

First numbered release.
