You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Current code treats one multi byte character (some Eastern Asian languages) as 3 words. It restricts word count more than expected, especially in header/footer section.
for i := 4; i < v.NumField()-1; i++ {
if v.Field(i).Len() >= 255 {
return fmt.Errorf("field %s must be less than 255 characters", v.Type().Field(i).Name)
}
}
The text was updated successfully, but these errors were encountered:
Description
Current code treats one multi byte character (some Eastern Asian languages) as 3 words. It restricts word count more than expected, especially in header/footer section.
https://github.com/qax-os/excelize/blob/master/sheet.go#L1094-L1098
The text was updated successfully, but these errors were encountered: