Procs
proc alignTable(s: string; delim = '\t'; fill = ' '; sep = " "): string {. ...raises: [], tags: [], forbids: [].}
- Formats a delim-delimited s representing a table; each cell is aligned to a width that's computed for each column; consecutive columns are delimited by sep, and alignment space is filled using fill. More customized formatting can be done by calling parseTableCells directly. Source Edit