mirror of
https://github.com/Jermolene/TiddlyWiki5.git
synced 2026-01-26 06:21:11 -08:00
Fix parsing bug
This commit is contained in:
parent
adf9853ce4
commit
c4d0b61827
1 changed files with 1 additions and 1 deletions
|
|
@ -176,7 +176,7 @@ exports.parseFilter = function(filterString) {
|
|||
// If there is a filter pragma
|
||||
operation.pragma = match[1];
|
||||
operation.suffix = match[2];
|
||||
p = p + operation.pragma.length;
|
||||
p = match.index + match[0].length;
|
||||
} else if(match[3]) {
|
||||
// If there is a filter run prefix
|
||||
operation.prefix = match[3];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue