Remove redundant Text member from ItemElement

This commit is contained in:
Christian Muehlhaeuser
2019-12-13 03:00:45 +01:00
parent 0384d598d2
commit 5675184234
-3
View File
@@ -6,7 +6,6 @@ import (
) )
type ItemElement struct { type ItemElement struct {
Text string
Enumeration uint Enumeration uint
} }
@@ -14,13 +13,11 @@ func (e *ItemElement) Render(w io.Writer, ctx RenderContext) error {
var el *BaseElement var el *BaseElement
if e.Enumeration > 0 { if e.Enumeration > 0 {
el = &BaseElement{ el = &BaseElement{
Token: e.Text,
Style: ctx.style[Enumeration], Style: ctx.style[Enumeration],
Prefix: strconv.FormatInt(int64(e.Enumeration), 10), Prefix: strconv.FormatInt(int64(e.Enumeration), 10),
} }
} else { } else {
el = &BaseElement{ el = &BaseElement{
Token: e.Text,
Style: ctx.style[Item], Style: ctx.style[Item],
} }
} }