mirror of
https://github.com/Tyrrrz/DiscordChatExporter.git
synced 2026-02-03 00:29:20 +00:00
@@ -1,10 +1,10 @@
|
||||
Author;Date;Content;Attachments;
|
||||
{{~ for message in Model.Messages -}}
|
||||
{{- message.Author.FullName }};
|
||||
{{- }}"{{ message.Author.FullName }}";
|
||||
|
||||
{{- message.Timestamp | FormatDate }};
|
||||
{{- }}"{{ message.Timestamp | FormatDate }}";
|
||||
|
||||
{{- message.Content | FormatContent }};
|
||||
{{- }}"{{ message.Content | FormatContent }}";
|
||||
|
||||
{{- message.Attachments | array.map "Url" | array.join "," }};
|
||||
{{- }}"{{ message.Attachments | array.map "Url" | array.join "," }}";
|
||||
{{~ end -}}
|
||||
|
Can't render this file because it contains an unexpected character in line 9 and column 39.
|
@@ -273,9 +273,6 @@ namespace DiscordChatExporter.Core.Services
|
||||
|
||||
private string FormatContentCsv(string content)
|
||||
{
|
||||
// New lines
|
||||
content = content.Replace("\n", ", ");
|
||||
|
||||
// Escape quotes
|
||||
content = content.Replace("\"", "\"\"");
|
||||
|
||||
|
||||
Reference in New Issue
Block a user