diff --git a/rslib/src/import_export/text/csv/export.rs b/rslib/src/import_export/text/csv/export.rs index c175049c2..27590fd64 100644 --- a/rslib/src/import_export/text/csv/export.rs +++ b/rslib/src/import_export/text/csv/export.rs @@ -81,6 +81,7 @@ fn file_writer_with_header(path: &str) -> Result> { write_file_header(&mut file)?; Ok(csv::WriterBuilder::new() .delimiter(DELIMITER.byte()) + .quote_style(csv::QuoteStyle::Always) .from_writer(file)) } @@ -95,6 +96,7 @@ fn note_file_writer_with_header(path: &str, ctx: &NoteContext) -> Result