fix mktoc script and update tocs

This commit is contained in:
moehriegitt 2018-11-05 01:03:47 +01:00
parent a587efe4e3
commit c32ad1e602
2 changed files with 2 additions and 2 deletions

View file

@ -25,7 +25,7 @@
* [difference](#difference)
* [group](#group)
* [intersection](#intersection)
* [linear_extrude](#linear-extrude)
* [linear_extrude](#linear_extrude)
* [mirror](#mirror)
* [multmatrix](#multmatrix)
* [polygon](#polygon)

View file

@ -15,7 +15,7 @@ sub anchor($)
{
my ($k) = @_;
$k =~ s(/)()g;
$k =~ s/[^0-9a-z]+/-/gi;
$k =~ s/[^0-9a-z_]+/-/gi;
$k =~ s/^-//;
$k =~ s/-$//;
return lc($k);