Dear Monks, I've got an odd problem. I'm using the code
from "urlify"
to convert urls embedded in text to links. I use 2 regexps
in order to catch urls that start a line, and ones that do
not. This strategy works perfectly in the development
environment (win) but the regexp that converts beginning
of line urls breaks in production (unix).
$text =~ s{^($urls:[$any] +?)(?=[$punc]* [^$any]|$) }{<a href="$1" tar
+get="_blank">$1</a>}igox;