use text/template to avoid HTML escaping

Co-authored-by: Roy O'Young <roy2220@outlook.com>

Closes #57
This commit is contained in:
Will Norris
2021-07-29 00:25:56 -07:00
parent 058aeeb7be
commit b431030b15
4 changed files with 12 additions and 4 deletions

View File

@@ -15,13 +15,13 @@
package main
import (
"html/template"
"io/ioutil"
"os"
"os/exec"
"path/filepath"
"strings"
"testing"
"text/template"
)
func run(t *testing.T, name string, args ...string) {