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

@@ -21,13 +21,13 @@ import (
"errors"
"flag"
"fmt"
"html/template"
"io/ioutil"
"log"
"os"
"path/filepath"
"regexp"
"strings"
"text/template"
"time"
"golang.org/x/sync/errgroup"