1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2025-04-06 18:56:56 +00:00

Revert DEBUG: render result and diff below body only on browser

This commit is contained in:
lin onetwo 2025-03-09 15:46:10 +08:00
parent 74c9841901
commit 8ab12738cf
2 changed files with 0 additions and 41 deletions

View File

@ -1,29 +0,0 @@
/*\
title: $:/core/modules/filters/serializeparsetree.js
type: application/javascript
module-type: filteroperator
Filter operator for serializing JSON string of Abstract Syntax Tree (AST) of Wiki parse tree to a raw WikiText string.
\*/
(function(){
/*jslint node: true, browser: true */
/*global $tw: false */
"use strict";
/*
Export our filter function
*/
exports.serializeparsetree = function(source,operator,options) {
var results = [];
source(function(tiddler,title) {
var parseTreeObject = $tw.utils.parseJSONSafe(title);
if(parseTreeObject) {
results.push($tw.utils.serializeParseTree(parseTreeObject));
}
});
return results;
};
})();

View File

@ -6,15 +6,3 @@ code-body: yes
<$transclude tiddler="$:/language/MissingTiddler/Hint"/>
</$transclude>
<%if [[$:/info/browser]text[yes]] %>
<$wikify text={{!!text}} name=parsetree output=parsetree >
<$let text2={{{[<parsetree>serializeparsetree[]]}}}>
<$wikify name=rendered text=<<text2>> output=html >
<$diff-text source={{!!text}} dest=<<text2>>/>
<<rendered>>
</$wikify>
</$let>
</$wikify>
<%endif%>