going forward, include tag in plain

This commit is contained in:
Ted Unangst 2023-07-31 20:37:03 -04:00
parent 14c9d31bd7
commit c24f06b9f3
1 changed files with 3 additions and 0 deletions

View File

@ -807,6 +807,9 @@ func (honk *Honk) Plain() string {
plain = append(plain, d.Name)
plain = append(plain, d.Desc)
}
for _, o := range honk.Onts {
plain = append(plain, o)
}
return strings.Join(plain, " ")
}