Closed wcshds closed 1 year ago
Currently leptosfmt replaces all raw string literals in the view macro with normal strings.
As a result,
view! { <p>r#"some" string"#</p> }
will become
view! { <p>"some" string"</p> }
Obviously, the formatted code is incorrect。
Currently leptosfmt replaces all raw string literals in the view macro with normal strings.
As a result,
will become
Obviously, the formatted code is incorrect。