diff options
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 20 |
1 files changed, 10 insertions, 10 deletions
@@ -2,23 +2,23 @@ # Excelize -[](https://travis-ci.org/Luxurioust/excelize) -[](https://codecov.io/gh/Luxurioust/excelize) -[](https://goreportcard.com/report/github.com/Luxurioust/excelize) -[](https://godoc.org/github.com/Luxurioust/excelize) +[](https://travis-ci.org/xuri/excelize) +[](https://codecov.io/gh/xuri/excelize) +[](https://goreportcard.com/report/github.com/xuri/excelize) +[](https://godoc.org/github.com/xuri/excelize) [](https://opensource.org/licenses/BSD-3-Clause) [](https://www.paypal.me/xuri) ## Introduction -Excelize is a library written in pure Golang and providing a set of functions that allow you to write to and read from XLSX files. Support reads and writes XLSX file generated by Microsoft Excelâ„¢ 2007 and later. Support save file without losing original charts of XLSX. This library needs Go version 1.8 or later. The full API docs can be seen using go's built-in documentation tool, or online at [godoc.org](https://godoc.org/github.com/Luxurioust/excelize). +Excelize is a library written in pure Golang and providing a set of functions that allow you to write to and read from XLSX files. Support reads and writes XLSX file generated by Microsoft Excelâ„¢ 2007 and later. Support save file without losing original charts of XLSX. This library needs Go version 1.8 or later. The full API docs can be seen using go's built-in documentation tool, or online at [godoc.org](https://godoc.org/github.com/xuri/excelize). ## Basic Usage ### Installation ```go -go get github.com/Luxurioust/excelize +go get github.com/xuri/excelize ``` ### Create XLSX file @@ -32,7 +32,7 @@ import ( "fmt" "os" - "github.com/Luxurioust/excelize" + "github.com/xuri/excelize" ) func main() { @@ -65,7 +65,7 @@ import ( "os" "strconv" - "github.com/Luxurioust/excelize" + "github.com/xuri/excelize" ) func main() { @@ -103,7 +103,7 @@ import ( "fmt" "os" - "github.com/Luxurioust/excelize" + "github.com/xuri/excelize" ) func main() { @@ -138,7 +138,7 @@ import ( _ "image/jpeg" _ "image/png" - "github.com/Luxurioust/excelize" + "github.com/xuri/excelize" ) func main() { |