We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 010c815 commit 18fe487Copy full SHA for 18fe487
solid/py_scadparser/scad_tokens.py
@@ -42,7 +42,7 @@
42
escape_sequence = r"""(\\("""+simple_escape+'|'+decimal_escape+'|'+hex_escape+'))'
43
escape_sequence_start_in_string = r"""(\\[0-9a-zA-Z._~!=&\^\-\\?'"])"""
44
string_char = r"""([^"\\\n]|"""+escape_sequence_start_in_string+')'
45
-t_STRING = '"'+string_char+'*"'
+t_STRING = '"'+string_char+'*"' + " | " + "'" +string_char+ "*'"
46
47
t_EQUAL = "=="
48
t_GREATER_OR_EQUAL = ">="
0 commit comments