1
0
Fork 0
mirror of https://github.com/marty-oehme/scripts.git synced 2024-12-22 07:58:08 +00:00

Add files via upload

This commit is contained in:
Maboroshy 2017-10-08 01:20:12 +04:00 committed by GitHub
parent f67d1f4c24
commit 13c753eccf

View file

@ -33,7 +33,7 @@ Script {
*/ */
function noteTaggingHook(note, action, tagName, newTagName) { function noteTaggingHook(note, action, tagName, newTagName) {
var noteText = note.noteText; var noteText = note.noteText;
var tagRegExp = RegExp("\\B%1($|\\s|\\b)".arg(escapeRegExp(tagMarker + tagName).replace(/ /g, "_"))); var tagRegExp = RegExp("\\B%1(?=($|\\s|\\b))".arg(escapeRegExp(tagMarker + tagName).replace(/ /g, "_")));
switch (action) { switch (action) {
// adds the tag "tagName" to the note // adds the tag "tagName" to the note