| 51 |
$attr_value =~ s/&/&/g; |
$attr_value =~ s/&/&/g; |
| 52 |
$attr_value =~ s/</</g; |
$attr_value =~ s/</</g; |
| 53 |
$attr_value =~ s/>/>/g; |
$attr_value =~ s/>/>/g; |
| 54 |
$attr_value =~ s/"/"/g; |
$attr_value =~ s/"/"/g; # in attribute mode |
| 55 |
$attr_value =~ s/\xA0/ /g; |
$attr_value =~ s/\xA0/ /g; |
| 56 |
$s .= $attr_value . '"'; |
$s .= $attr_value . '"'; |
| 57 |
} |
} |
| 61 |
area => 1, base => 1, basefont => 1, bgsound => 1, |
area => 1, base => 1, basefont => 1, bgsound => 1, |
| 62 |
br => 1, col => 1, embed => 1, frame => 1, hr => 1, |
br => 1, col => 1, embed => 1, frame => 1, hr => 1, |
| 63 |
img => 1, input => 1, link => 1, meta => 1, param => 1, |
img => 1, input => 1, link => 1, meta => 1, param => 1, |
| 64 |
spacer => 1, wbr => 1, |
spacer => 1, wbr => 1, keygen => 1, |
| 65 |
}->{$tag_name}; |
}->{$tag_name}; |
| 66 |
|
|
| 67 |
$s .= "\x0A" if {pre => 1, textarea => 1, listing => 1}->{$tag_name}; |
$s .= "\x0A" if {pre => 1, textarea => 1, listing => 1}->{$tag_name}; |
| 84 |
$value =~ s/&/&/g; |
$value =~ s/&/&/g; |
| 85 |
$value =~ s/</</g; |
$value =~ s/</</g; |
| 86 |
$value =~ s/>/>/g; |
$value =~ s/>/>/g; |
| 87 |
$value =~ s/"/"/g; |
#$value =~ s/"/"/g; |
| 88 |
$value =~ s/\xA0/ /g; |
$value =~ s/\xA0/ /g; |
| 89 |
$s .= $value; |
$s .= $value; |
| 90 |
} |
} |