Description
- Gitea version (or commit ref): 4b6370c (main)
- Can you reproduce the bug at https://try.gitea.io:
- Yes (provide example URL)
- No
https://try.gitea.io/richmahn/test/src/branch/master/is_tsv_but_uses_commas.tsv
See the raw....it actually has 8 rows, yet because the "intro" row has many commas in its text, only rows that have NO commas (because the header has no commas), thus only one field, get shown.
Description
If a file is a .tsv file, which, while isn't a standard itself and thus uses CSV but with tab as the delimiter, but has more commas than tabs, the function here thinks the delimiter is comma, and thus all rows that have more fields than the header (which has no commas thus 1 field) get removed from the rendering.
I suggest, which I have done in my fork of Gitea, make a separate markup renderer like the "csv" one but call it "tsv" and always use \t
as the delimiter due to the filename. Either that, or make sure the function that guesses the delimiter gets the filename of the file being rendered so it can determine from that.
Screenshots
Here is the blame for my .tsv file on try.gitea.io which shows it is tab delimited, with the 2nd row having LOTS of texts with commas:
Yet the table rendering removes many of the rows: