(connector string)
| 40 | } |
| 41 | |
| 42 | func (f *ASCIIFormatter) applyConnector(connector string) string { |
| 43 | if f != nil && f.FormatConnector != nil { |
| 44 | return f.FormatConnector(connector) |
| 45 | } |
| 46 | return connector |
| 47 | } |
| 48 | |
| 49 | func (f *ASCIIFormatter) applyReference(text string) string { |
| 50 | if f != nil && f.FormatReference != nil { |