diff --git a/Markdown.pl b/Markdown.pl index 381d7a1..edfc74a 100755 --- a/Markdown.pl +++ b/Markdown.pl @@ -1979,6 +1979,8 @@ sub _DoTag { if (($tag =~ m{^<($g_possible_tag_name)(?:[\s>]|/>$)} || $tag =~ m{^}) && $ok_tag_name{lc($1)}) { + return _ProcessURLTag("href", $tag) if $tag =~ /^/>/g; + + return $text; +} + + sub _EncodeAmps { my $text = shift;