Don't escape with HTML::Restrict

This commit is contained in:
swag 2023-05-06 00:01:34 -04:00
parent f88b75fdd4
commit dae058c07f

View File

@ -31,7 +31,10 @@ sub startup($self) {
});
$self->helper(hr => sub ($c) {
state $hr = HTML::Restrict->new(strip_enclosed_content => [])
state $hr = HTML::Restrict->new(
filter_text => 0,
strip_enclosed_content => []
)
});
$self->helper(thread => sub ($c) {