diff options
| author | Shulhan <ms@kilabit.info> | 2023-11-06 21:30:25 +0700 |
|---|---|---|
| committer | Shulhan <ms@kilabit.info> | 2023-11-07 20:18:58 +0700 |
| commit | 3ca487dff9ea91ef6d60e4a9e7a78ea8e177bff1 (patch) | |
| tree | 63435a89217b9a74e67e5858e28511881334c46e /ciigo.go | |
| parent | d49ba537f82fb418723390744768d3525ed3c986 (diff) | |
| download | ciigo-3ca487dff9ea91ef6d60e4a9e7a78ea8e177bff1.tar.xz | |
all: add comment to exported variable Version
Diffstat (limited to 'ciigo.go')
| -rw-r--r-- | ciigo.go | 16 |
1 files changed, 8 insertions, 8 deletions
@@ -26,15 +26,15 @@ const ( internalTemplatePath = `_internal/.template` ) -var ( - Version = `0.10.0` +// Version define the latest tagged release of this module. +var Version = `0.10.0` - defExcludes = []string{ - `.*\.adoc$`, - `.*\.md$`, - `^\..*`, - } -) +// defExcludes define default files to be excludes on GoEmbed. +var defExcludes = []string{ + `.*\.adoc$`, + `.*\.md$`, + `^\..*`, +} // Convert all markup files inside directory "dir" recursively into HTML // files using ConvertOptions HtmlTemplate file as base template. |
