libfort
libfort copied to clipboard
C/C++ library to create formatted ASCII tables for console applications
Is there a possibility to ignore escape sequences when calculating table layout? I've found that escape sequences are processed as regular text which lead to improper table layout calculations. Can...
Missing the logic to enable `ft_copy_table` for utf8 tables.
Hi, I am trying to integrate libfort as part of a project built using CMake. I would like to link to it either statically by using a `.lib` file, or...
``` Test project /disk-samsung/freebsd-ports/devel/libfort/work/.build Start 1: libfort_test_dev 1/18 Test #1: libfort_test_dev .................Subprocess aborted***Exception: 0.01 sec Start 2: libfort_test_cpp 2/18 Test #2: libfort_test_cpp ................. Passed 0.01 sec Start 3: libfort_test 3/18...
``` +------------------------+------------+----------+----------+ | Header row, column 1 | Header 2 | Header 3 | Header 4 | | (header rows optional) | | | | +========================+============+==========+==========+ | body row 1,...
Adding a flag to automatically number the rows (except header) will be a great addition
I saw `set_cell_min_width` API to set minimum width but there is nothing to set maximum width
I am dynamically populating a table in a function which returns ta string by calling `to_string()` in the end. My logic is such that I may end up in not...
An API to sort the table on one of the columns before calling `to_string()` will be a great addition!