diff --git a/editions/dev/tiddlers/from Heigele and Jurke/Parser.tid b/editions/dev/tiddlers/from Heigele and Jurke/Parser.tid index 6d9ac1b58..3b132dc47 100644 --- a/editions/dev/tiddlers/from Heigele and Jurke/Parser.tid +++ b/editions/dev/tiddlers/from Heigele and Jurke/Parser.tid @@ -12,7 +12,7 @@ The parse-tree consists of nested nodes like ```js {type: "element", tag: , attributes: {}, children: []} - an HTML element {type: "text", text: } - a text node -{type: "entity", value: } - an HTML entity like © for a copyright symbol +{type: "entity", entity: } - an HTML entity like © for a copyright symbol {type: "raw", html: } - raw HTML ``` @@ -37,4 +37,4 @@ Attributes in the parse-tree are not stored as simple strings but they are nodes ```js {type: "string", value: } - literal string {type: "indirect", textReference: } - indirect through a text reference -``` \ No newline at end of file +```