Revert: #7768 Ensure {{}} doesn't cause a recursion error

See https://github.com/Jermolene/TiddlyWiki5/pull/7768#issuecomment-1850578638
This commit is contained in:
Jeremy Ruston
2023-12-11 17:56:11 +00:00
parent 4a9b3009dd
commit 15e53b8cd1
3 changed files with 0 additions and 7 deletions

View File

@@ -79,9 +79,6 @@ exports.parse = function() {
}
return [tiddlerNode];
} else {
// No template or text reference is provided, so we'll use a blank target. Otherwise we'll generate
// a transclude widget that transcludes the current tiddler, often leading to recursion errors
transcludeNode.attributes["$tiddler"] = {name: "$tiddler", type: "string", value: ""};
return [transcludeNode];
}
}