Fix trimming of markup section names (#4863)

Signed-off-by: Nicolas Lenz <[email protected]>
This commit is contained in:
Nicolas Lenz
2018-09-03 20:59:02 -04:00
committed by techknowlogick
parent e48df3ee47
commit 668a477c69
+1 -1
View File
@@ -1155,7 +1155,7 @@ func NewContext() {
extensionReg := regexp.MustCompile(`\.\w`)
for _, sec := range Cfg.Section("markup").ChildSections() {
name := strings.TrimLeft(sec.Name(), "markup.")
name := strings.TrimPrefix(sec.Name(), "markup.")
if name == "" {
log.Warn("name is empty, markup " + sec.Name() + "ignored")
continue