(elem: string, content: string)
| 3 | import { columnsToStringArray, rowToStringArray } from '../table.js'; |
| 4 | |
| 5 | function wrap(elem: string, content: string): string { |
| 6 | return `<${elem}>${content}</${elem}>${NEW_LINE}`; |
| 7 | } |
| 8 | |
| 9 | function wrapRow(content: string): string { |
| 10 | const elem = 'tr'; |