tweak readme
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2023-12-28 15:39:40 +11:00
parent e20e799808
commit 6baa0fe103
3 changed files with 7 additions and 5 deletions

View File

@@ -1,7 +1,8 @@
# Secrets Management Tool (SMT)
Build Date: {BUILDTIME}
Build Hash: {SHA1VER}
Build Date: `{BUILDTIME}`
Build Hash: `{SHA1VER}`
## Overview

View File

@@ -1,7 +1,8 @@
<h1>Secrets Management Tool (SMT)</h1>
<p>Build Date: {BUILDTIME}
Build Hash: {SHA1VER}</p>
<p>Build Date: <code>{BUILDTIME}</code></p>
<p>Build Hash: <code>{SHA1VER}</code></p>
<h2>Overview</h2>

View File

@@ -65,7 +65,7 @@ func staticFileServer(content embed.FS) gin.HandlerFunc {
// parse the file and perform text replacements as necessary
for key, element := range replacements {
log.Printf("Searching for '%s' to replace\n", key)
//log.Printf("Searching for '%s' to replace\n", key)
data = bytes.Replace(data, []byte(key), []byte(element), -1)
}