From 20aae4e0e6e9d40a35a1d6ef6e3f357afdda0605 Mon Sep 17 00:00:00 2001 From: Ri Xu Date: Tue, 11 Jul 2017 14:54:47 +0800 Subject: Repo URI changed. --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'README.md') diff --git a/README.md b/README.md index 0a7af7d..84ca0bf 100644 --- a/README.md +++ b/README.md @@ -2,23 +2,23 @@ # Excelize -[![Build Status](https://travis-ci.org/Luxurioust/excelize.svg?branch=master)](https://travis-ci.org/Luxurioust/excelize) -[![Code Coverage](https://codecov.io/gh/Luxurioust/excelize/branch/master/graph/badge.svg)](https://codecov.io/gh/Luxurioust/excelize) -[![Go Report Card](https://goreportcard.com/badge/github.com/Luxurioust/excelize)](https://goreportcard.com/report/github.com/Luxurioust/excelize) -[![GoDoc](https://godoc.org/github.com/Luxurioust/excelize?status.svg)](https://godoc.org/github.com/Luxurioust/excelize) +[![Build Status](https://travis-ci.org/xuri/excelize.svg?branch=master)](https://travis-ci.org/xuri/excelize) +[![Code Coverage](https://codecov.io/gh/xuri/excelize/branch/master/graph/badge.svg)](https://codecov.io/gh/xuri/excelize) +[![Go Report Card](https://goreportcard.com/badge/github.com/xuri/excelize)](https://goreportcard.com/report/github.com/xuri/excelize) +[![GoDoc](https://godoc.org/github.com/xuri/excelize?status.svg)](https://godoc.org/github.com/xuri/excelize) [![Licenses](https://img.shields.io/badge/license-bsd-orange.svg)](https://opensource.org/licenses/BSD-3-Clause) [![Donate](https://img.shields.io/badge/Donate-PayPal-green.svg)](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() { -- cgit v1.2.1