trim strings extracted from descriptions (fixes #51)

This commit is contained in:
Daniel Czerwonk 2022-01-14 11:49:52 +01:00
parent c99e498508
commit 564a7b5b72

View File

@ -44,7 +44,7 @@ func labelKeysFromDescription(desc string) (res []string) {
continue
}
res = append(res, tmp[0])
res = append(res, strings.TrimSpace(tmp[0]))
}
return
@ -57,7 +57,7 @@ func labelValuesFromDescription(desc string) (res []string) {
continue
}
res = append(res, tmp[1])
res = append(res, strings.TrimSpace(tmp[1]))
}
return