Browse Source

Added single backtick to the escape list

tags/docs-0.9
RogueException 9 years ago
parent
commit
c7eabfd49f
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/Discord.Net/Format.cs

+ 1
- 1
src/Discord.Net/Format.cs View File

@@ -9,7 +9,7 @@ namespace Discord

static Format()
{
_patterns = new string[] { "__", "_", "**", "*", "~~", "```" };
_patterns = new string[] { "__", "_", "**", "*", "~~", "```", "`"};
_builder = new StringBuilder(DiscordClient.MaxMessageSize);
}



Loading…
Cancel
Save