tree-sitter-grammars / tree-sitter-markdown

Markdown grammar for tree-sitter
MIT License
411 stars 52 forks source link

Fix parsing of uppercase task list item marker #129

Closed liskin closed 8 months ago

liskin commented 9 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 8 months ago

Thanks, good catch!