├── .gitignore ├── README.md ├── docx ├── docx.go ├── escape.go └── xml_config.go ├── main.go ├── template.docx └── template_new.docx /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR903/smarterlab-docx/HEAD/README.md -------------------------------------------------------------------------------- /docx/docx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR903/smarterlab-docx/HEAD/docx/docx.go -------------------------------------------------------------------------------- /docx/escape.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR903/smarterlab-docx/HEAD/docx/escape.go -------------------------------------------------------------------------------- /docx/xml_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR903/smarterlab-docx/HEAD/docx/xml_config.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR903/smarterlab-docx/HEAD/main.go -------------------------------------------------------------------------------- /template.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR903/smarterlab-docx/HEAD/template.docx -------------------------------------------------------------------------------- /template_new.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CR903/smarterlab-docx/HEAD/template_new.docx --------------------------------------------------------------------------------