macro_rules! unsafe_text {
($($tt:tt)*) => { ... };
}
Expand description
Creates a Node::UnsafeText
.
ยงWarning
Node::UnsafeText
is not escaped when rendered,
and as such, can allow for XSS attacks. Use with caution!
macro_rules! unsafe_text {
($($tt:tt)*) => { ... };
}
Creates a Node::UnsafeText
.
Node::UnsafeText
is not escaped when rendered,
and as such, can allow for XSS attacks. Use with caution!