pub fn parse_text_grid(
content: &str,
opts: &TextParseOptions,
) -> FerrayResult<(Vec<String>, usize, usize)>Expand description
Parse a delimited text into a 2D grid of string cells.
Returns (rows, ncols) where rows is a flat vector of cells in row-major order.