fix mktoc script and update tocs
This commit is contained in:
parent
a587efe4e3
commit
c32ad1e602
2 changed files with 2 additions and 2 deletions
|
|
@ -25,7 +25,7 @@
|
|||
* [difference](#difference)
|
||||
* [group](#group)
|
||||
* [intersection](#intersection)
|
||||
* [linear_extrude](#linear-extrude)
|
||||
* [linear_extrude](#linear_extrude)
|
||||
* [mirror](#mirror)
|
||||
* [multmatrix](#multmatrix)
|
||||
* [polygon](#polygon)
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in a new issue