mirror of
https://github.com/marty-oehme/scripts.git
synced 2024-11-17 23:38:07 +00:00
Fix invalid chars pattern to allow numbers
This commit is contained in:
parent
5f2eb256ea
commit
ce45c0ab25
2 changed files with 2 additions and 2 deletions
|
@ -4,7 +4,7 @@
|
|||
"script": "insert-toc.qml",
|
||||
"authors": ["@flopp", "@toindev"],
|
||||
"platforms": ["linux", "macos", "windows"],
|
||||
"version": "0.0.2",
|
||||
"version": "0.0.3",
|
||||
"minAppVersion": "17.06.2",
|
||||
"description" : "This script scans the current note for headlines, generates a table of contents, and inserts a the TOC into the note."
|
||||
}
|
||||
|
|
|
@ -47,7 +47,7 @@ Script {
|
|||
function extractLink(title) {
|
||||
var lowercase = title.toLowerCase()
|
||||
var spaceReplaced = lowercase.replace(/ /g, "-")
|
||||
var invalidCharsRemoved = spaceReplaced.replace(/[^A-Za-zÀ-ÿ-_]/g, "")
|
||||
var invalidCharsRemoved = spaceReplaced.replace(/[^0-9A-Za-zÀ-ÿ-_]/g, "")
|
||||
return invalidCharsRemoved;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue