From 7dbf88f221f278075d4ff9e153b21236d0826c33 Mon Sep 17 00:00:00 2001 From: xuri Date: Thu, 29 Jul 2021 00:03:57 +0800 Subject: This closes #971, closes #972 and closes #974 - Escape XML character in the drop list - Fix incorrect character count limit in the drop list - Fix Excel time parse issue in some case - Fix custom number format month parse issue in some case - Fix corrupted file generated caused by concurrency adding pictures --- styles.go | 2 ++ 1 file changed, 2 insertions(+) (limited to 'styles.go') diff --git a/styles.go b/styles.go index 07ccab1..2a99a4d 100644 --- a/styles.go +++ b/styles.go @@ -996,6 +996,7 @@ func parseTime(v string, format string) string { {"mm", "01"}, {"am/pm", "pm"}, {"m/", "1/"}, + {"m", "1"}, {"%%%%", "January"}, {"&&&&", "Monday"}, } @@ -1005,6 +1006,7 @@ func parseTime(v string, format string) string { {"\\ ", " "}, {"\\.", "."}, {"\\", ""}, + {"\"", ""}, } // It is the presence of the "am/pm" indicator that determines if this is // a 12 hour or 24 hours time format, not the number of 'h' characters. -- cgit v1.2.1