diff options
author | Ri Xu <xuri.me@gmail.com> | 2017-07-11 14:54:47 +0800 |
---|---|---|
committer | Ri Xu <xuri.me@gmail.com> | 2017-07-11 14:54:47 +0800 |
commit | 20aae4e0e6e9d40a35a1d6ef6e3f357afdda0605 (patch) | |
tree | 024945588008cc3aa4f1e91ade661ded2a03da80 /README.md | |
parent | 1e20b20a0c9a7957d300a679bdcce69fb3b163b5 (diff) |
Repo URI changed.
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() { |