-
-
Notifications
You must be signed in to change notification settings - Fork 7.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add CSV lazyQuotes option to transform.Unmarshal #11884
Comments
Adding this option to Adding this option to |
Yes I tried to add it and make a Pull Request and stopped because it was messy and I am absolutely no golang expert. |
Rethinking this, does it even need to be configurable? The current behavior is to throw an error. I can't think of any downside to enabling Edit... Rethinking this again, if it isn't broken don't fix it. We should add this as option to |
If true, a quote may appear in an unquoted field and a non-doubled quote may appear in a quoted field. It defaults to false. Closes gohugoio#11884
If true, a quote may appear in an unquoted field and a non-doubled quote may appear in a quoted field. It defaults to false. Closes gohugoio#11884
If true, a quote may appear in an unquoted field and a non-doubled quote may appear in a quoted field. It defaults to false. Closes #11884
This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
Sometimes we deal with CSV files that use lazy quotes. The Go library used already supports a setting to support this but within the hugo getCsv function we have no way to pass this as a parameter.
Example/Background
The text was updated successfully, but these errors were encountered: