########## HTML tag / \n を無効化 ########## sub htmltag_disable { $_ = $_[0]; s/&/&/g; s/</</g; s/>/>/g; s/"/"/g; s/\n//g; return ($_); }