我需要你的帮助来去除<del>
标签<script>
和<style>
标签块,例如
Input:
<style type="text/css">
<del>p</del>
{
color:red;
}
</style>
Output:
<style type="text/css">
p
{
color:red;
}
</style>
脚本标签也是如此。基本上我想<del>
从脚本标签和样式标签块中删除标签。