Skip to content

Commit

Permalink
Add space character support (#24775)
Browse files Browse the repository at this point in the history
  • Loading branch information
sunag authored Oct 11, 2022
1 parent 100c2dd commit 3f235f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,7 @@ <h1><a href="https://threejs.org">three.js</a></h1>

const link = links[ file ];
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 ) {

Expand Down

0 comments on commit 3f235f8

Please sign in to comment.