BenjaminSchaaf / sbnf

A BNF-style language for writing sublime-syntax files
MIT License
58 stars 6 forks source link

'#' translates to '' #29

Closed AmjadHD closed 2 years ago

AmjadHD commented 2 years ago
main : '#';

translates to:

main:
  - match: ''
    pop: true
  - match: '\S'
    scope: invalid.illegal.test

`#` and '######' translate correctly.