frozolotl / tree-sitter-typst

A tree-sitter grammar for the typst typesetting language with a focus on correctness
European Union Public License 1.2
76 stars 3 forks source link

line comments doesn't work except for the first line #17

Open peng1999 opened 9 months ago

peng1999 commented 9 months ago

Example:

// line comment
// line comment

expected:

(source_file
  (markup
    (line_comment)
    (line_comment)))

actual:


(source_file
  (markup
    (line_comment)
    (text)
    (text)))
frozolotl commented 9 months ago

I'll try to fix it, but for now you can use revision b345818903b55ea01ab351c13e25b2d2dd9dd395 to fix this issue.