Remove comment headings from yaml comments

Signed-off-by: kolaente <k@knt.li>
This commit is contained in:
kolaente 2020-10-13 20:43:40 +02:00
parent 613d1706d8
commit ced8f7d063
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
1 changed files with 2 additions and 2 deletions

View File

@ -743,13 +743,13 @@ type configOption struct {
func parseYamlConfigNode(node *yaml.Node) (config *configOption) {
config = &configOption{
key: node.Value,
description: node.HeadComment,
description: strings.ReplaceAll(node.HeadComment, "# ", ""),
}
for i, n2 := range node.Content {
coo := &configOption{
key: n2.Value,
description: n2.HeadComment,
description: strings.ReplaceAll(n2.HeadComment, "# ", ""),
}
if i%2 == 0 {