Smarty escape problem does not parse the <p> tag, directly output the <p> tag, and report an error with unescape?

the ueditor,
database used by the content editor stores the p tag, similar to

12312

1221


when the reading content is displayed on the page, smarty does not automatically parse the content displayed by the p tag or the content saved in the database.
< {$arr.content | escape:"htmlentitydecode"} > whatever

unescape reported an error Fatal error: Smarty error: [in article_detail.tpl line 93]: [plugin] modifier "unescape" is not implemented (core.load_plugins.php, line 235) in E:worktestsrcincludeSmartySmarty.class.php on line 2175

format of content saved in the database



unescape

I, rookie, please give us some advice.

Php
Mar.04,2021

try htmlspecialchars_decode


strip_tags


The

page displays the p tag. When looking at the source code, it is found that it has been escaped.
because the unescape of smarty cannot be used, the escape of js is used

.

succeeded

Menu