Added single backtick to the escape list

This commit is contained in:
RogueException
2015-10-15 03:27:58 -03:00
parent 2d54504de8
commit c7eabfd49f

View File

@@ -9,7 +9,7 @@ namespace Discord
static Format() static Format()
{ {
_patterns = new string[] { "__", "_", "**", "*", "~~", "```" }; _patterns = new string[] { "__", "_", "**", "*", "~~", "```", "`"};
_builder = new StringBuilder(DiscordClient.MaxMessageSize); _builder = new StringBuilder(DiscordClient.MaxMessageSize);
} }