Add support for iOS-style quotation marks

This commit is contained in:
Ske 2019-10-28 20:17:20 +01:00
parent 3c7afbfdaa
commit 8f60377d63

View File

@ -7,7 +7,7 @@ namespace PluralKit.Bot.CommandSystem
{ {
private static readonly Dictionary<char, char> _quotePairs = new Dictionary<char, char>() private static readonly Dictionary<char, char> _quotePairs = new Dictionary<char, char>()
{ {
{'\'', '\''}, {'"', '"'} {'\'', '\''}, {'"', '"'}, {'“', '”'}
}; };
private readonly string _cmd; private readonly string _cmd;