diff options
author | Ri Xu <xuri.me@gmail.com> | 2016-10-17 15:48:19 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-17 15:48:19 +0800 |
commit | 051fc18a3adfeb583f064d61a817933ede2d5905 (patch) | |
tree | dd25b4454e8fa0ece08340211f1395e90692ac62 | |
parent | db5f5134d5e221d7f9ed47c320d2cb0b519af565 (diff) | |
parent | 6dda05d30e1be58909e291433ef7c226f7e4b215 (diff) |
Merge pull request #7 from aldidana/master
Make readme highlight code
-rw-r--r-- | README.md | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -17,7 +17,7 @@ Excelize is a library written in pure Golang and providing a set of functions th ### Installation -``` +```go go get github.com/Luxurioust/excelize ``` @@ -25,7 +25,7 @@ go get github.com/Luxurioust/excelize Here is a minimal example usage that will create XLSX file. -``` +```go package main import ( @@ -53,7 +53,7 @@ func main() { The following constitutes the bare minimum required to write an XLSX document. -``` +```go package main import ( @@ -81,7 +81,7 @@ func main() { ### Reading XLSX files -``` +```go package main import ( |