Fix internal server error on checkboxes (#10845)
Annoyingly goldmarks SetAttributeString requires that the value of the attribute is still a []byte but does not make it clear in the documentation. Signed-off-by: Andrew Thornton <art27@cantab.net>
This commit is contained in:
parent
bbd910ed1b
commit
cf4f2cfa3e
1 changed files with 1 additions and 1 deletions
|
@ -85,7 +85,7 @@ func (g *GiteaASTTransformer) Transform(node *ast.Document, reader text.Reader,
|
|||
case *ast.List:
|
||||
if v.HasChildren() && v.FirstChild().HasChildren() && v.FirstChild().FirstChild().HasChildren() {
|
||||
if _, ok := v.FirstChild().FirstChild().FirstChild().(*east.TaskCheckBox); ok {
|
||||
v.SetAttributeString("class", "task-list")
|
||||
v.SetAttributeString("class", []byte("task-list"))
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Reference in a new issue