fix(escaping): move escaping to individual variables (#3107)

This commit is contained in:
Fred Cox
2021-11-01 14:18:45 -07:00
committed by GitHub
parent 73277d37c6
commit c1f2d345aa
68 changed files with 259 additions and 175 deletions
+1 -1
View File
@@ -44,7 +44,7 @@ pub fn module<'a>(context: &'a Context) -> Option<Module<'a>> {
.map(Ok),
_ => None,
})
.parse(None)
.parse(None, Some(context))
});
module.set_segments(match parsed {