Open Gaojianli opened 4 weeks ago
Hi, what do you mean by header-csv
? Do you want to export the csv/table as json?
@Gaojianli Can you explain this in more detail?
example csv:
name,age
tom,16
Export as JSON:
[
{
"name":"tom"
"age": 16
}
]
This is not as easy as it seems... JSON has different data types and the plugin treats all cells as strings (with the exception of auto-fill and statistics).
So, I can get you
name,age
tom,16
[
{
"name":"tom"
"age": "16"
}
]
if this helps.
Version?
Feature
Firstly, thanks for making such awseome plugin! Editing csv as table really simplified my work. However, I don't find a way to export the header-csv as json, could you please add one?