blosxom with UseModWiki
The way I use blosxom and UseModWiki has been mentioned in a few weblogs during the last day: 0xDECAFBAD, WebSeitzWiki, Mike’s Radio Weblog and bloglet.
I’m definitely not good at Perl, so the code snippet posted at 0xDECAFBAD by Aaron of Montreal might be helpful besides my little guide to modifying blosxom for generating those Wiki! links:
# line 81 of blosxom<br />
<br />
use Text::WikiFormat;<br />
chomp(my $body = Text::WikiFormat::format(join '', <$fh>));<br />
This apparently requires the Text-WikiFormat module. I’m not sure I understand this, but maybe you do.
Update: I forgot that I’ve had to escape a few more characters that the Wiki doesn’t like. Here are the added lines:
$wiki_title =~ s/://g; <br />
$wiki_title =~ s/!//g; # NEW! <br />
$wiki_title =~ s/\?//g; # NEW! <br />
my $story = ($content_type eq 'text/...