mirror of
https://github.com/Tyrrrz/DiscordChatExporter.git
synced 2025-05-30 14:35:18 -04:00
parent
32af1aa05d
commit
918cb4820f
2 changed files with 2 additions and 2 deletions
|
@ -195,7 +195,7 @@
|
||||||
<div class="chatlog__reactions">
|
<div class="chatlog__reactions">
|
||||||
{{~ for reaction in message.Reactions ~}}
|
{{~ for reaction in message.Reactions ~}}
|
||||||
<div class="chatlog__reaction">
|
<div class="chatlog__reaction">
|
||||||
<img class="emoji emoji--small" title="{{ reaction.Emoji.Name }}" src="{{ reaction.Emoji.ImageUrl }}" />
|
<img class="emoji emoji--small" alt="{{ reaction.Emoji.Name }}" title="{{ reaction.Emoji.Name }}" src="{{ reaction.Emoji.ImageUrl }}" />
|
||||||
<span class="chatlog__reaction-count">{{ reaction.Count }}</span>
|
<span class="chatlog__reaction-count">{{ reaction.Count }}</span>
|
||||||
</div>
|
</div>
|
||||||
{{~ end ~}}
|
{{~ end ~}}
|
||||||
|
|
|
@ -210,7 +210,7 @@ namespace DiscordChatExporter.Core.Services
|
||||||
? "emoji--large"
|
? "emoji--large"
|
||||||
: null;
|
: null;
|
||||||
|
|
||||||
buffer.Append($"<img class=\"emoji {jumboableCssClass}\" title=\"{emojiNode.Name}\" src=\"{emojiImageUrl}\" />");
|
buffer.Append($"<img class=\"emoji {jumboableCssClass}\" alt=\"{emojiNode.Name}\" title=\"{emojiNode.Name}\" src=\"{emojiImageUrl}\" />");
|
||||||
}
|
}
|
||||||
|
|
||||||
else if (node is LinkNode linkNode)
|
else if (node is LinkNode linkNode)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue