• Handle backslash escaping in template literals (#366)
🚨Breaking changes 🚨
If you were accounting for broken template literal escaping with something like \\ some stuff \\
to get the output of \ some stuff \
this will now result in \\ some stuff \\
. So you'll need to remove the escaped backslash since they're now automatically escaped.