We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6c8ea37 commit 3409386Copy full SHA for 3409386
docs/website/docs/dlt-ecosystem/file-formats/csv.md
@@ -82,9 +82,11 @@ Or using environment variables:
82
NORMALIZE__DATA_WRITER__DELIMITER=|
83
NORMALIZE__DATA_WRITER__INCLUDE_HEADER=False
84
NORMALIZE__DATA_WRITER__QUOTING=quote_all
85
-NORMALIZE__DATA_WRITER__LINETERMINATOR="\r\n"
+NORMALIZE__DATA_WRITER__LINETERMINATOR=$"\r\n"
86
```
87
88
+Note the `"$"` prefix before `"\r\n"` to escape the newline character when using environment variables.
89
+
90
### Destination settings
91
A few additional settings are available when copying `csv` to destination tables:
92
* **on_error_continue** - skip lines with errors (only Snowflake)
0 commit comments