Skip to content

Commit

Permalink
fix: direct pattern input
Browse files Browse the repository at this point in the history
  • Loading branch information
felixroos committed Jan 18, 2025
1 parent 09f70f9 commit 33f5b41
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions kabelsalat.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,7 @@
const ogParseInput = Node.parseInput; // avoid endless loop
Node.parseInput = function (input, node) {
if (input._Pattern) {
// could it happen that input has already kabelvalue called?
// do we need to check?
return input.V;
return input.P;
}
return ogParseInput(input, node);
};
Expand Down

0 comments on commit 33f5b41

Please sign in to comment.