-
Notifications
You must be signed in to change notification settings - Fork 36
Open
Description
If we have a trree or more words definition, the link will not work.
The solution is replace the line:
let id = term.toLowerCase().replace(' ','-');\n\n
With:
let id = term.toLowerCase().replace(/ /g,'-');\n\n
these last line will replace "all ocurrences of space" and not only the first.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels