Skip to content

Commit

Permalink
Make SHOW modifiers case-insensitive
Browse files Browse the repository at this point in the history
  • Loading branch information
ajcr committed Oct 29, 2023
1 parent 375d501 commit bd3af0f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions urn/grammar.lark
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,6 @@ output_config: ("SHOW"i output_fmt | "SHOW"i output_float)
output_fmt: (TABLE | PLOT) -> output_fmt
output_float: FLOAT -> output_float

TABLE: "table"
PLOT: "plot"
FLOAT: /floats?/
TABLE: "table"i
PLOT: "plot"i
FLOAT: /floats?/i

0 comments on commit bd3af0f

Please sign in to comment.