1
0
Fork 0
forked from forgejo/forgejo

Fix task list checkbox toggle to work with YAML front matter (#25184) (#25236)

Backport https://github.com/go-gitea/gitea/pull/25184 by @jtran
Closes #25225.

Fixes https://github.com/go-gitea/gitea/issues/25160.

`data-source-position` of checkboxes in a task list was incorrect
whenever there was YAML front matter. This would result in issue content
or PR descriptions getting corrupted with random `x` or space characters
when a user checked or unchecked a task.

(cherry picked from commit 1650a26eb5)
This commit is contained in:
Jonathan Tran 2023-06-13 14:22:59 -04:00 committed by Earl Warren
parent 38e5589bd6
commit c34b605314
No known key found for this signature in database
GPG key ID: 0579CB2928A78A00
6 changed files with 66 additions and 7 deletions

View file

@ -18,6 +18,9 @@ type RenderConfig struct {
TOC bool
Lang string
yamlNode *yaml.Node
// Used internally. Cannot be controlled by frontmatter.
metaLength int
}
// UnmarshalYAML implement yaml.v3 UnmarshalYAML