mirror of
https://github.com/go-gitea/gitea
synced 2024-11-17 15:44:25 +00:00
Fix trimming of markup section names (#4863)
Signed-off-by: Nicolas Lenz <nicolas@eisfunke.com>
This commit is contained in:
parent
e48df3ee47
commit
668a477c69
@ -1155,7 +1155,7 @@ func NewContext() {
|
|||||||
|
|
||||||
extensionReg := regexp.MustCompile(`\.\w`)
|
extensionReg := regexp.MustCompile(`\.\w`)
|
||||||
for _, sec := range Cfg.Section("markup").ChildSections() {
|
for _, sec := range Cfg.Section("markup").ChildSections() {
|
||||||
name := strings.TrimLeft(sec.Name(), "markup.")
|
name := strings.TrimPrefix(sec.Name(), "markup.")
|
||||||
if name == "" {
|
if name == "" {
|
||||||
log.Warn("name is empty, markup " + sec.Name() + "ignored")
|
log.Warn("name is empty, markup " + sec.Name() + "ignored")
|
||||||
continue
|
continue
|
||||||
|
Loading…
Reference in New Issue
Block a user