hugo/parser: Fix shortcode boolean param parsing

Fixes #10451
This commit is contained in:
Joe Mooring 2022-11-17 20:00:49 -08:00 committed by Bjørn Erik Pedersen
parent df85cb9ae2
commit 00fe7e0408
2 changed files with 9 additions and 2 deletions

View file

@ -215,7 +215,7 @@ const (
)
var (
boolRe = regexp.MustCompile(`^(true$)|(false$)`)
boolRe = regexp.MustCompile(`^(true|false)$`)
intRe = regexp.MustCompile(`^[-+]?\d+$`)
floatRe = regexp.MustCompile(`^[-+]?\d*\.\d+$`)
)

View file

@ -38,6 +38,13 @@ func TestItemValTyped(t *testing.T) {
c.Assert(Item{low: 0, high: len(source)}.ValTyped(source), qt.Equals, true)
source = []byte("false")
c.Assert(Item{low: 0, high: len(source)}.ValTyped(source), qt.Equals, false)
source = []byte("trued")
source = []byte("falsex")
c.Assert(Item{low: 0, high: len(source)}.ValTyped(source), qt.Equals, "falsex")
source = []byte("xfalse")
c.Assert(Item{low: 0, high: len(source)}.ValTyped(source), qt.Equals, "xfalse")
source = []byte("truex")
c.Assert(Item{low: 0, high: len(source)}.ValTyped(source), qt.Equals, "truex")
source = []byte("xtrue")
c.Assert(Item{low: 0, high: len(source)}.ValTyped(source), qt.Equals, "xtrue")
}