Closed chinedufn closed 3 years ago
This commit allows Percy's crates to be compiled on stable Rust.
There is one temporary caveat:
On nightly Rust you can create text nodes without quotes.
// Nightly Rust does not require quotes around text nodes. html! { <div>My text nodes here </div> };
On stable Rust, quotation marks are required.
// Stable Rust requires quotes around text nodes. html! { <div>{ "My text nodes here " }</div> };
This difference will go away once span locations are stabilized in the Rust compiler - Rust tracking issue
This commit allows Percy's crates to be compiled on stable Rust.
There is one temporary caveat:
On nightly Rust you can create text nodes without quotes.
On stable Rust, quotation marks are required.
This difference will go away once span locations are stabilized in the Rust compiler - Rust tracking issue