1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2025-11-26 12:14:51 +00:00

Fix whitespace in all plugins for v5.3.6 (#8285)

* Fix whitespace in all plugins for v5.3.5

* remove const to var chanes
This commit is contained in:
Mario Pietsch
2024-08-20 17:33:07 +02:00
committed by GitHub
parent 014f302af3
commit 231a39e743
14 changed files with 58 additions and 58 deletions

View File

@@ -234,12 +234,12 @@ function MarkdownParser(type,text,options) {
rules: { pragma: {}, block: this.blockRuleClasses, inline: this.inlineRuleClasses }
});
}
catch (err) {
catch(err) {
wikiParser = $tw.wiki.parseText("text/vnd.tiddlywiki",
"<strong>Error encountered while parsing the tiddler:</strong><p>" + err.message + "</p>",
{parseAsInline: false, wiki: options.wiki});
}
finally {
finally{
$tw.utils.parseStringLiteral = origParseStringLiteral;
}
if(wikiParser.tree.length > 0) {