Text represents an optionally preformatted paragraph.
| 203 | |
| 204 | // Text represents an optionally preformatted paragraph. |
| 205 | type Text struct { |
| 206 | Lines []string |
| 207 | Pre bool |
| 208 | Raw string // original text, for Pre==true |
| 209 | } |
| 210 | |
| 211 | func (t Text) TemplateName() string { return "text" } |
| 212 |
nothing calls this directly
no outgoing calls
no test coverage detected