(id string)
| 19 | } |
| 20 | |
| 21 | func (f *ASCIIFormatter) applyID(id string) string { |
| 22 | if f != nil && f.FormatID != nil { |
| 23 | return f.FormatID(id) |
| 24 | } |
| 25 | return id |
| 26 | } |
| 27 | |
| 28 | func (f *ASCIIFormatter) applyTitle(title, status string) string { |
| 29 | if f != nil && f.FormatTitle != nil { |