|
@@ -313,7 +313,7 @@
|
|
|
|
|
|
const link = links[ file ];
|
|
const link = links[ file ];
|
|
if ( file in tags ) file += ' ' + tags[ file ].join( ' ' );
|
|
if ( file in tags ) file += ' ' + tags[ file ].join( ' ' );
|
|
- const res = file.match( exp );
|
|
|
|
|
|
+ const res = file.replace( /_+/g, ' ' ).match( exp );
|
|
|
|
|
|
if ( res && res.length > 0 ) {
|
|
if ( res && res.length > 0 ) {
|
|
|
|
|