Currently all strings passed to the view! macro are escaped, meaning that using things like HTML entity references or in-line CSS using & becomes kind of a hassle since you need to use something like Unescaped::new_unchecked("§"). It would be neat if the view! macro had some way of passing in unescaped strings directly for this kind of use-case. Maybe even using actual raw string syntax?
Currently all strings passed to the
view!macro are escaped, meaning that using things like HTML entity references or in-line CSS using&becomes kind of a hassle since you need to use something likeUnescaped::new_unchecked("§"). It would be neat if theview!macro had some way of passing in unescaped strings directly for this kind of use-case. Maybe even using actual raw string syntax?