$Id: htmlcomment.pl,v 1.1 2008/02/21 17:19:56 weakish Exp $
'; + +push(@MyRules, \&HtmlCommentRules); + +sub HtmlCommentRules { + # /* + # This is a comment. + # */ + # This RegExp is borrowed from creole.pl shamelessly. + if ($bol && m/\G\/\*[ \t]*\n(.*?\n)\*\/[ \t]*(\n|\z)/cgs) { + my $str = $1; + $str =~ s/\n \*\//\n\*\//g; + return CloseHtmlEnvironments() . '' + . AddHtmlEnvironment('p'); + } + return undef; +} + +