From a9d3ee28693adfe920b3cd047f52862d8a79a00e Mon Sep 17 00:00:00 2001 From: Ri Xu Date: Tue, 30 Aug 2016 11:51:31 +0800 Subject: Init commit. --- templates.go | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 templates.go (limited to 'templates.go') diff --git a/templates.go b/templates.go new file mode 100644 index 0000000..3d8e24f --- /dev/null +++ b/templates.go @@ -0,0 +1,40 @@ +// This file contains default templates for XML files we don't yet +// populated based on content. + +package excelize + +const XMLHeader = "\n" + +const TEMPLATE_DOCPROPS_APP = ` + 0 + Go XLSX +` + +const TEMPLATE_CONTENT_TYPES = ` + + + + + + + + +` + +const TEMPLATE_WORKBOOK = ` +` + +const TEMPLATE_STYLES = ` +` +const TEMPLATE_SHEET = ` +` + +const TEMPLATE_WORKBOOK_RELS = `` + +const TEMPLATE_DOCPROPS_CORE = `xuri2006-09-16T00:00:00Z2006-09-16T00:00:00Z` + +const TEMPLATE_RELS = `` + +const TEMPLATE_THEME = ` + +` -- cgit v1.2.1