+ while ($list =~ m/^\s*\*\s+\\\\([^\s]+)\s+\[\[([^]]+)\]\]/mg) {
+ my $smiley=$1;
+ my $file=$2;
+
+ $smileys{$smiley}=$file;
+
+ # Add a version with < and > escaped, since they probably
+ # will be (by markdown) by the time the sanitize hook runs.
+ $smiley=~s/</</g;
+ $smiley=~s/>/>/g;
+ $smileys{$smiley}=$file;