|
|
@ -1,4 +1,6 @@
|
|
|
|
namespace DiscordChatExporter.Core.Markdown
|
|
|
|
using Tyrrrz.Extensions;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
namespace DiscordChatExporter.Core.Markdown
|
|
|
|
{
|
|
|
|
{
|
|
|
|
public class EmojiNode : Node
|
|
|
|
public class EmojiNode : Node
|
|
|
|
{
|
|
|
|
{
|
|
|
@ -8,6 +10,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
public bool IsAnimated { get; }
|
|
|
|
public bool IsAnimated { get; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public bool IsCustomEmoji => Id.IsNotBlank();
|
|
|
|
|
|
|
|
|
|
|
|
public EmojiNode(string lexeme, string id, string name, bool isAnimated)
|
|
|
|
public EmojiNode(string lexeme, string id, string name, bool isAnimated)
|
|
|
|
: base(lexeme)
|
|
|
|
: base(lexeme)
|
|
|
|
{
|
|
|
|
{
|
|
|
|