Append text to current cell.
(text []byte)
| 412 | |
| 413 | // Append text to current cell. |
| 414 | func (b *Writer) append(text []byte) { |
| 415 | b.buf = append(b.buf, text...) |
| 416 | b.cell.size += len(text) |
| 417 | } |
| 418 | |
| 419 | // Update the cell width. |
| 420 | func (b *Writer) updateWidth() { |