tree-sitter-grammars / tree-sitter-markdown

Markdown grammar for tree-sitter
MIT License
427 stars 56 forks source link

Fix parsing of uppercase task list item marker #129

Closed liskin closed 10 months ago

liskin commented 11 months ago

The spec (https://github.github.com/gfm/#task-list-items-extension-) says:

A task list item marker consists of an optional number of spaces, a left bracket ([), either a whitespace character or the letter x in either lowercase or uppercase, and then a right bracket (]).

but we only parsed the lowercase x.

MDeiml commented 10 months ago

Thanks, good catch!