From 357771321a777a2dd3ec8524c3cb26a824ecf2e3 Mon Sep 17 00:00:00 2001 From: Michael Andreen Date: Tue, 9 Jan 2007 08:37:06 +0000 Subject: [PATCH] italic and urls --- ND/Web/Include.pm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ND/Web/Include.pm b/ND/Web/Include.pm index 9206ba4..ea7db46 100644 --- a/ND/Web/Include.pm +++ b/ND/Web/Include.pm @@ -65,6 +65,8 @@ sub parseMarkup { $text =~ s{\n}{\n
}g; $text =~ s{\[B\](.*?)\[/B\]}{$1}gi; + $text =~ s{\[I\](.*?)\[/I\]}{$1}gi; + $text =~ s{\[url\](.*?)\[/url\]}{$1}gi; return $text; } -- 2.39.2