mirror of
https://github.com/marty-oehme/scripts.git
synced 2024-12-22 07:58:08 +00:00
Merge pull request #39 from toindev/fix-insert-toc
Fix invalid chars pattern to allow numbers
This commit is contained in:
commit
1cf129e5d9
2 changed files with 2 additions and 2 deletions
|
@ -4,7 +4,7 @@
|
||||||
"script": "insert-toc.qml",
|
"script": "insert-toc.qml",
|
||||||
"authors": ["@flopp", "@toindev"],
|
"authors": ["@flopp", "@toindev"],
|
||||||
"platforms": ["linux", "macos", "windows"],
|
"platforms": ["linux", "macos", "windows"],
|
||||||
"version": "0.0.2",
|
"version": "0.0.3",
|
||||||
"minAppVersion": "17.06.2",
|
"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."
|
"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) {
|
function extractLink(title) {
|
||||||
var lowercase = title.toLowerCase()
|
var lowercase = title.toLowerCase()
|
||||||
var spaceReplaced = lowercase.replace(/ /g, "-")
|
var spaceReplaced = lowercase.replace(/ /g, "-")
|
||||||
var invalidCharsRemoved = spaceReplaced.replace(/[^A-Za-zÀ-ÿ-_]/g, "")
|
var invalidCharsRemoved = spaceReplaced.replace(/[^0-9A-Za-zÀ-ÿ-_]/g, "")
|
||||||
return invalidCharsRemoved;
|
return invalidCharsRemoved;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue