浏览代码

Merge pull request #7 from aldidana/master

Make readme highlight code
Ri Xu 9 年之前
父节点
当前提交
051fc18a3a
共有 1 个文件被更改,包括 4 次插入4 次删除
  1. 4 4
      README.md

+ 4 - 4
README.md

@@ -17,7 +17,7 @@ Excelize is a library written in pure Golang and providing a set of functions th
 
 
 ### Installation
 ### Installation
 
 
-```
+```go
 go get github.com/Luxurioust/excelize
 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.
 Here is a minimal example usage that will create XLSX file.
 
 
-```
+```go
 package main
 package main
 
 
 import (
 import (
@@ -53,7 +53,7 @@ func main() {
 
 
 The following constitutes the bare minimum required to write an XLSX document.
 The following constitutes the bare minimum required to write an XLSX document.
 
 
-```
+```go
 package main
 package main
 
 
 import (
 import (
@@ -81,7 +81,7 @@ func main() {
 
 
 ### Reading XLSX files
 ### Reading XLSX files
 
 
-```
+```go
 package main
 package main
 
 
 import (
 import (