Skip to content

Commit

Permalink
Fix qax-os#578, escape character in the formula
Browse files Browse the repository at this point in the history
  • Loading branch information
xuri committed Feb 15, 2020
1 parent 023dba7 commit 52f1eee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xmlWorksheet.go
Original file line number Diff line number Diff line change
Expand Up @@ -475,7 +475,7 @@ func (c *xlsxC) hasValue() bool {
// http://schemas.openxmlformats.org/spreadsheetml/2006/main - currently I have
// not checked it for completeness - it does as much as I need.
type xlsxF struct {
Content string `xml:",innerxml"`
Content string `xml:",chardata"`
T string `xml:"t,attr,omitempty"` // Formula type
Ref string `xml:"ref,attr,omitempty"` // Shared formula ref
Si string `xml:"si,attr,omitempty"` // Shared formula index
Expand Down

0 comments on commit 52f1eee

Please sign in to comment.