summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorRi Xu <xuri.me@gmail.com>2017-01-19 14:05:32 +0800
committerRi Xu <xuri.me@gmail.com>2017-01-19 14:05:32 +0800
commit4a9b39afc634a2399c4729f4fb47c9f290ab1ee5 (patch)
tree71d673195ccae30d6ef174611f6cf362be7e9133 /README.md
parent52796f6e58e95145e2964d0d313a2f721dcc040e (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.md7
1 files changed, 6 insertions, 1 deletions
diff --git a/README.md b/README.md
index 1c77058..f9ead95 100644
--- a/README.md
+++ b/README.md
@@ -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)
+ }
}
```