1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-06-22 21:33:14 +00:00

Fix typo which prevented example from working

This commit is contained in:
Tony Grosinger 2015-10-25 13:56:21 -07:00
parent f593bae2b2
commit c0de553370

View File

@ -12,7 +12,7 @@ The parse-tree consists of nested nodes like
```js
{type: "element", tag: <string>, attributes: {}, children: []} - an HTML element
{type: "text", text: <string>} - a text node
{type: "entity", value: <string>} - an HTML entity like &copy; for a copyright symbol
{type: "entity", entity: <string>} - an HTML entity like &copy; for a copyright symbol
{type: "raw", html: <string>} - 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: <string>} - literal string
{type: "indirect", textReference: <textReference>} - indirect through a text reference
```
```