Don't escape with HTML::Restrict

This commit is contained in:
swag 2023-05-05 23:58:56 -04:00
parent 3ea6d892c3
commit 8b840a856c

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) {