From 2abbae8c40e5c0f0bf4341143252c43829a869f4 Mon Sep 17 00:00:00 2001 From: janisdd Date: Mon, 22 Mar 2021 17:42:00 +0100 Subject: [PATCH] Add note to explain quote option is ignored for some values (#862) --- docs/docs.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/docs.html b/docs/docs.html index e7911c9..da3c8b6 100644 --- a/docs/docs.html +++ b/docs/docs.html @@ -282,7 +282,8 @@ quotes - If true, forces all fields to be enclosed in quotes. If an array of true/false values, specifies which fields should be force-quoted (first boolean is for the first column, second boolean for the second column, ...). A function that returns a boolean values can be used to determine the quotes value of a cell. This function accepts the cell value and column index as parameters. + If true, forces all fields to be enclosed in quotes. If an array of true/false values, specifies which fields should be force-quoted (first boolean is for the first column, second boolean for the second column, ...). A function that returns a boolean values can be used to determine the quotes value of a cell. This function accepts the cell value and column index as parameters.
+ Note that this option is ignored for undefined, null and date-object values. The option escapeFormulae also takes precedence over this.