We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e1d6d20 commit 1bc9e7eCopy full SHA for 1bc9e7e
1 file changed
src/reader_util.cpp
@@ -154,6 +154,8 @@ std::vector<std::string> ReaderUtil::DetectEncodings(const std::string& database
154
encodings.push_back("ibm-943_P15A-2003"); // Japanese with \ as backslash
155
} else if (encoding == "EUC-KR") {
156
encodings.push_back("windows-949-2000"); // Korean with \ as backlash
157
+ } else if (encoding == "GB18030") {
158
+ encodings.push_back("windows-936-2000"); // Simplified Chinese
159
} else if (encoding == "ISO-8859-1" || encoding == "windows-1252") {
160
encodings.push_back("ibm-5348_P100-1997"); // Occidental with Euro
161
} else if (encoding == "ISO-8859-2" || encoding == "windows-1250") {
0 commit comments