Fix grammar not accepting empty lines

This commit is contained in:
2025-01-15 12:14:16 +01:00
parent cf21e4c7a7
commit e13a188bb1

View File

@@ -2,7 +2,7 @@ start = _ @(task / line) _
/**************************************************************************************************************************************/
line = data:.+ {
line = data:.* {
return {
type: "line",
data: data.join("")