You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Special characters (", , and ') can be escaped with a backslash -- e.g., """ will match a literal quote character in the input stream. Other valid escape sequences include: \b (backspace), \f (form feed), \n (line feed), \r (carriage return), and \t (tab), as well as \x followed by 2 hex digits and \u followed by 4 hex digits, for matching characters by code point.
The text was updated successfully, but these errors were encountered:
https://github.com/harc/ohm/blob/master/doc/syntax-reference.md mentions:
Special characters (", , and ') can be escaped with a backslash -- e.g., """ will match a literal quote character in the input stream. Other valid escape sequences include: \b (backspace), \f (form feed), \n (line feed), \r (carriage return), and \t (tab), as well as \x followed by 2 hex digits and \u followed by 4 hex digits, for matching characters by code point.
The text was updated successfully, but these errors were encountered: