mirror of
https://github.com/Tyrrrz/DiscordChatExporter.git
synced 2026-04-30 09:42:40 +00:00
Fix CSV and PlainText outputs not rendering timestamps correctly
Fixes #65
This commit is contained in:
@@ -1,10 +1,9 @@
|
|||||||
Author;Date;Content;Attachments;
|
Author;Date;Content;Attachments;
|
||||||
|
{{~ for group in MessageGroups -}}
|
||||||
{{- for group in MessageGroups -}}
|
|
||||||
{{- for message in group.Messages -}}
|
{{- for message in group.Messages -}}
|
||||||
{{- message.Author.FullName }};
|
{{- message.Author.FullName }};
|
||||||
|
|
||||||
{{- message.TimeStamp | FormatDate }};
|
{{- message.Timestamp | FormatDate }};
|
||||||
|
|
||||||
{{- message.Content | FormatContent }};
|
{{- message.Content | FormatContent }};
|
||||||
|
|
||||||
|
|||||||
|
Can't render this file because it contains an unexpected character in line 11 and column 41.
|
@@ -7,7 +7,7 @@ Range: {{ if From }}{{ From | FormatDate }} {{ end }}{{ if From || To }}->{{
|
|||||||
==============================================================
|
==============================================================
|
||||||
|
|
||||||
{{~ for group in MessageGroups ~}}
|
{{~ for group in MessageGroups ~}}
|
||||||
{{~ group.Author.FullName }} [{{ group.TimeStamp | FormatDate }}]
|
{{~ group.Author.FullName }} [{{ group.Timestamp | FormatDate }}]
|
||||||
{{~ for message in group.Messages ~}}
|
{{~ for message in group.Messages ~}}
|
||||||
{{~ message.Content | FormatContent }}
|
{{~ message.Content | FormatContent }}
|
||||||
{{~ for attachment in message.Attachments ~}}
|
{{~ for attachment in message.Attachments ~}}
|
||||||
|
|||||||
Reference in New Issue
Block a user