You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In all views that use syntax highlihting, a Rust expression println!("a"b"); breaks the hightlighting, considering " as the end of a string. See the following code:
As discussed in #1075, escaped double quotes were not being interpreted
correctly. This was due to an escaped double quote not being included in
the escape sequence regex in the Rust lexer.
This commit adds the double quote and the numeral zero (the null
character). See:
https://static.rust-lang.org/doc/master/reference.html#characters-and-strings
This fixes#1075.
In all views that use syntax highlihting, a Rust expression println!("a"b"); breaks the hightlighting, considering " as the end of a string. See the following code:
Related: http://rouge.jneen.net/pastes/5gRR
The text was updated successfully, but these errors were encountered: