Skip to content

Commit 8bfddf1

Browse files
authored
Merge pull request #1 from DHTMLX/encoding-problem
[fix] change encoding to utf-8
2 parents b27caa8 + a67bdef commit 8bfddf1

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

src/xml.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ impl<'a> Element<'a> {
3636
}
3737
pub fn to_xml(&mut self) -> String {
3838
let mut result = String::new();
39-
result.push_str(r#"<?xml version="1.0" encoding="ISO-8859-1"?>"#);
39+
result.push_str(r#"<?xml version="1.0" encoding="UTF-8"?>"#);
4040
result.push_str(&self.to_string());
4141
result
4242
}

wasm/xlsx_import_bg.wasm

-7 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)