Browse Source

updating text escape to cover double quotes and single quotes better

logicp 5 years ago
parent
commit
8883438cfa
1 changed files with 4 additions and 1 deletions
  1. 4 1
      headers/util.hpp

+ 4 - 1
headers/util.hpp

@@ -1,6 +1,6 @@
 #ifndef UTIL_HPP
 #define UTIL_HPP
-
+#pragma GCC system_header
 #include <string>
 #include <charconv>
 #include <utility>
@@ -65,6 +65,9 @@ static QString escapeText(QString s) {
     if (s.contains("\t")) {
         s.replace("\t", "\\t");
     }
+    if (s.contains('"')) {
+        s.replace('"', "\\\"");
+    }
     return s;
 }