Parse emojis in markdown and render them using Twemoji

Closes #140
This commit is contained in:
Alexey Golub
2019-03-03 18:36:12 +02:00
parent a564906719
commit 28175e2110
4 changed files with 68 additions and 19 deletions

View File

@@ -16,6 +16,11 @@
IsAnimated = isAnimated;
}
public EmojiNode(string lexeme, string name)
: this(lexeme, null, name, false)
{
}
public override string ToString() => $"<Emoji> {Name}";
}
}