Skip to content

Commit

Permalink
feat(text): relax separator rule
Browse files Browse the repository at this point in the history
  • Loading branch information
davidballester committed Dec 2, 2020
1 parent 88b4bd1 commit ce88eec
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/services/graph-grammar.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,10 @@ Grapher {
= identifier space identifier --withBlanks
| alnum+ --string
separator = ";" | "\\n"+
separator = ";" separator ?
| "\\n"+ separator?
| "\\r"+ separator?
| "/" separator?
}
`;
Expand Down

0 comments on commit ce88eec

Please sign in to comment.