Fix escaping anchors in keys (#1101)

This commit is contained in:
Dr. Andre Vehreschild
2022-04-21 15:19:51 +02:00
committed by GitHub
parent 4c982d59dc
commit 13626af92a
3 changed files with 16 additions and 2 deletions

View File

@@ -117,6 +117,10 @@ inline const RegEx& ValueInJSONFlow() {
static const RegEx e = RegEx(':');
return e;
}
inline const RegEx& Ampersand() {
static const RegEx e = RegEx('&');
return e;
}
inline const RegEx Comment() {
static const RegEx e = RegEx('#');
return e;