(value string)
| 471 | } |
| 472 | |
| 473 | func escapeMarkdownLine(value string) string { |
| 474 | return strings.NewReplacer("\r", " ", "\n", " ").Replace(value) |
| 475 | } |
| 476 | |
| 477 | func cmpString(value, fallback string) string { |
| 478 | if value == "" { |
no test coverage detected