summaryrefslogtreecommitdiffstats
path: root/utils/html.go
diff options
context:
space:
mode:
Diffstat (limited to 'utils/html.go')
-rw-r--r--utils/html.go6
1 files changed, 5 insertions, 1 deletions
diff --git a/utils/html.go b/utils/html.go
index 0de33435d..8e1a78875 100644
--- a/utils/html.go
+++ b/utils/html.go
@@ -11,6 +11,7 @@ import (
"io"
"path/filepath"
"reflect"
+ "strings"
"sync/atomic"
"github.com/fsnotify/fsnotify"
@@ -119,7 +120,10 @@ func (t *HTMLTemplate) RenderToWriter(w io.Writer) error {
}
func TranslateAsHtml(t i18n.TranslateFunc, translationID string, args map[string]interface{}) template.HTML {
- return template.HTML(t(translationID, escapeForHtml(args)))
+ message := t(translationID, escapeForHtml(args))
+ message = strings.Replace(message, "[[", "<strong>", -1)
+ message = strings.Replace(message, "]]", "</strong>", -1)
+ return template.HTML(message)
}
func escapeForHtml(arg interface{}) interface{} {