aboutsummaryrefslogtreecommitdiff
path: root/internal/template/template.go
diff options
context:
space:
mode:
authorRené 'Necoro' Neumann <necoro@necoro.eu>2020-04-21 18:48:06 +0200
committerRené 'Necoro' Neumann <necoro@necoro.eu>2020-04-21 18:48:06 +0200
commit1845873048e1f2c3499e75a4e5cbbe8d1247170d (patch)
treeaa2968d2ead185c440957d9d3ed2cfb54abf6ce8 /internal/template/template.go
parent87935efe945c6847d2b18afaf7bfae5e80aa61e6 (diff)
downloadfeed2imap-go-1845873048e1f2c3499e75a4e5cbbe8d1247170d.tar.gz
feed2imap-go-1845873048e1f2c3499e75a4e5cbbe8d1247170d.tar.bz2
feed2imap-go-1845873048e1f2c3499e75a4e5cbbe8d1247170d.zip
Move HTML template to string
Diffstat (limited to '')
-rw-r--r--internal/template/template.go6
1 files changed, 2 insertions, 4 deletions
diff --git a/internal/template/template.go b/internal/template/template.go
index e31ece2..350a0ed 100644
--- a/internal/template/template.go
+++ b/internal/template/template.go
@@ -3,7 +3,6 @@ package template
import (
"fmt"
"html/template"
- "path/filepath"
"strings"
)
@@ -50,8 +49,7 @@ var funcMap = template.FuncMap{
"byteCount": byteCount,
}
-func ForFile(filename string) *template.Template {
- name := filepath.Base(filename)
+func fromString(name, templateStr string) *template.Template {
tpl := template.New(name).Funcs(funcMap)
- return template.Must(tpl.ParseFiles(filename))
+ return template.Must(tpl.Parse(templateStr))
}