From c0de553370a7984f8e8b79b2c97fce7ec7100646 Mon Sep 17 00:00:00 2001 From: Tony Grosinger Date: Sun, 25 Oct 2015 13:56:21 -0700 Subject: [PATCH] Fix typo which prevented example from working --- editions/dev/tiddlers/from Heigele and Jurke/Parser.tid | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 +```