You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* detect csv delimiter in csv rendering
fixes#7868
* make linter happy
* fix failing testcase & use ints where possible
* expose markup type to template
previously all markup had the .markdown class, which is incorrect,
as it applies markdown CSS & JS logic to CSV rendering
* fix build (missing `make css`)
* ignore quoted csv content for delimiter scoring
also fix html generation
Currently CSV files are only properly rendered with a
,
delimiter.;
and\t
delimiters are common as well, and should be rendered as well.golangs
encoding/csv
does not have delimiter detection built in, so we need to implement that.I'm willing to implement that feature.
The text was updated successfully, but these errors were encountered: