mirror of
https://github.com/Tyrrrz/DiscordChatExporter.git
synced 2025-05-31 06:48:23 -04:00
Fix CSV and PlainText outputs not rendering timestamps correctly
Fixes #65
This commit is contained in:
parent
0a48da4c56
commit
4fbec95208
2 changed files with 3 additions and 4 deletions
|
@ -1,10 +1,9 @@
|
|||
Author;Date;Content;Attachments;
|
||||
|
||||
{{- for group in MessageGroups -}}
|
||||
{{~ for group in MessageGroups -}}
|
||||
{{- for message in group.Messages -}}
|
||||
{{- message.Author.FullName }};
|
||||
|
||||
{{- message.TimeStamp | FormatDate }};
|
||||
{{- message.Timestamp | FormatDate }};
|
||||
|
||||
{{- 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 ~}}
|
||||
{{~ group.Author.FullName }} [{{ group.TimeStamp | FormatDate }}]
|
||||
{{~ group.Author.FullName }} [{{ group.Timestamp | FormatDate }}]
|
||||
{{~ for message in group.Messages ~}}
|
||||
{{~ message.Content | FormatContent }}
|
||||
{{~ for attachment in message.Attachments ~}}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue