diff options
author | Ri Xu <xuri.me@gmail.com> | 2017-01-19 14:05:32 +0800 |
---|---|---|
committer | Ri Xu <xuri.me@gmail.com> | 2017-01-19 14:05:32 +0800 |
commit | 4a9b39afc634a2399c4729f4fb47c9f290ab1ee5 (patch) | |
tree | 71d673195ccae30d6ef174611f6cf362be7e9133 /README.md | |
parent | 52796f6e58e95145e2964d0d313a2f721dcc040e (diff) |
- Add hyperlink and set formula support for cell support;
- Character limits for cells added;
- Update go test and fix typo
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -106,7 +106,7 @@ func main() { } ``` -### Add pictures to XLSX files +### Add picture to XLSX files ```go package main @@ -125,6 +125,11 @@ func main() { fmt.Println(err) os.Exit(1) } + err = xlsx.WriteTo("/tmp/Workbook.xlsx") + if err != nil { + fmt.Println(err) + os.Exit(1) + } } ``` |