diff options
| author | xuri <xuri.me@gmail.com> | 2020-07-09 01:24:11 +0800 | 
|---|---|---|
| committer | xuri <xuri.me@gmail.com> | 2020-07-09 01:24:11 +0800 | 
| commit | 49257c5918f3aa9f2730021a7e6a24b4835646fd (patch) | |
| tree | 5b7e0b016bb008fd5680d19b59b05ab722a8d17b /README.md | |
| parent | f7bd0729c65fc82305328f7ac8fbaf329d1075c0 (diff) | |
support case-sensitive doc parts to improve compatibility
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 12 | 
1 files changed, 6 insertions, 6 deletions
| @@ -29,9 +29,9 @@ go get github.com/360EntSecGroup-Skylar/excelize  go get github.com/360EntSecGroup-Skylar/excelize/v2  ``` -### Create XLSX file +### Create spreadsheet -Here is a minimal example usage that will create XLSX file. +Here is a minimal example usage that will create spreadsheet file.  ```go  package main @@ -58,9 +58,9 @@ func main() {  }  ``` -### Reading XLSX file +### Reading spreadsheet -The following constitutes the bare to read a XLSX document. +The following constitutes the bare to read a spreadsheet document.  ```go  package main @@ -95,7 +95,7 @@ func main() {  }  ``` -### Add chart to XLSX file +### Add chart to spreadsheet file  With Excelize chart generation and management is as easy as a few lines of code. You can build charts based off data in your worksheet or generate charts without any data in your worksheet at all. @@ -131,7 +131,7 @@ func main() {  }  ``` -### Add picture to XLSX file +### Add picture to spreadsheet file  ```go  package main | 
