Render prints the BigText to the terminal.
()
| 128 | |
| 129 | // Render prints the BigText to the terminal. |
| 130 | func (p BigTextPrinter) Render() error { |
| 131 | s, _ := p.Srender() |
| 132 | Fprintln(p.Writer, s) |
| 133 | |
| 134 | return nil |
| 135 | } |
| 136 | |
| 137 | // DefaultBigText contains default values for BigTextPrinter. |
| 138 | var DefaultBigText = BigTextPrinter{ |