From 6dda05d30e1be58909e291433ef7c226f7e4b215 Mon Sep 17 00:00:00 2001 From: Aldi Priya Perdana Date: Mon, 17 Oct 2016 12:12:49 +0700 Subject: [PATCH] Make readme highlight code --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 431aea6..f1a57cd 100644 --- a/README.md +++ b/README.md @@ -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 (