version 0.4.1

This commit is contained in:
david 2002-05-25 15:28:01 +00:00
parent d08bc9056c
commit 1198336386
2 changed files with 3 additions and 1 deletions

View File

@ -1,4 +1,5 @@
2002-05-05 0.3 Initial public release
2002-05-05 0.4 Added Makefile.PL, INSTALL, man page, Changelog
Added -V, same as --version
2002-05-23 0.4.1 Bugfix, remove backslashes from id tags

View File

@ -6,7 +6,7 @@ use File::Basename;
use FileHandle;
use HTML::Entities;
$VERSION = "0.4";
$VERSION = "0.4.1-CVS";
$errors = 0;
$error = 0;
@ -1393,6 +1393,7 @@ sub anchorfix {
$anchor =~ s/&/-and-/g;
$anchor =~ s/;//g;
$anchor =~ s/\//-slash-/g;
$anchor =~ s/\\/-bslash-/g;
$anchor =~ s/\s+/-/g;
$anchor =~ s/'//g;
$anchor =~ s/`//g;