From 4a9b39afc634a2399c4729f4fb47c9f290ab1ee5 Mon Sep 17 00:00:00 2001 From: Ri Xu Date: Thu, 19 Jan 2017 14:05:32 +0800 Subject: - Add hyperlink and set formula support for cell support; - Character limits for cells added; - Update go test and fix typo --- README.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'README.md') 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) + } } ``` -- cgit v1.2.1