pub fn parse_escaped_whitespace<'a, E: ParseError<&'a str>>(
    input: &'a str
) -> IResult<&'a str, &'a str, E>
Expand description

Parse a backslash, followed by any amount of whitespace. This is used later to discard any escaped whitespace.