Browse Source

fix date sub second formating

- in golang, .0 means output subsec upto 1dp
  .9 means output subsec upto 1dp and omit if the value is zero
- in excel, .0 has a same meaning as golang
santsai 9 years ago
parent
commit
fe4f636b01
1 changed files with 0 additions and 1 deletions
  1. 0 1
      cell.go

+ 0 - 1
cell.go

@@ -384,7 +384,6 @@ func parseTime(c *Cell) (string, error) {
 		{"mm", "01"},
 		{"am/pm", "pm"},
 		{"m/", "1/"},
-		{".0", ".9999"},
 		{"%%%%", "January"},
 		{"&&&&", "Monday"},
 	}