From 192af02a40cc745d967be1c96fcc52569ca8e8df Mon Sep 17 00:00:00 2001 From: Ri Xu Date: Fri, 2 Sep 2016 11:54:52 +0800 Subject: Format code with golint rules --- templates.go | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) (limited to 'templates.go') diff --git a/templates.go b/templates.go index 3d8e24f..c6b748c 100644 --- a/templates.go +++ b/templates.go @@ -3,14 +3,15 @@ package excelize +// XMLHeader define an XML declaration can also contain a standalone declaration const XMLHeader = "\n" -const TEMPLATE_DOCPROPS_APP = ` +const templateDocpropsApp = ` 0 Go XLSX ` -const TEMPLATE_CONTENT_TYPES = ` +const templateContentTypes = ` @@ -21,20 +22,20 @@ const TEMPLATE_CONTENT_TYPES = ` ` -const TEMPLATE_WORKBOOK = ` +const templateWorkbook = ` ` -const TEMPLATE_STYLES = ` +const templateStyles = ` ` -const TEMPLATE_SHEET = ` +const templateSheet = ` ` -const TEMPLATE_WORKBOOK_RELS = `` +const templateWorkbookRels = `` -const TEMPLATE_DOCPROPS_CORE = `xuri2006-09-16T00:00:00Z2006-09-16T00:00:00Z` +const templateDocpropsCore = `xuri2006-09-16T00:00:00Z2006-09-16T00:00:00Z` -const TEMPLATE_RELS = `` +const templateRels = `` -const TEMPLATE_THEME = ` +const templateTheme = ` ` -- cgit v1.2.1