1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-09-29 15:30:47 +00:00

Merge pull request #2045 from tgrosinger/patch-1

Fix typo which prevented example from working
This commit is contained in:
Jeremy Ruston 2015-10-25 22:15:09 +00:00
commit 72cd6a5802

View File

@ -12,7 +12,7 @@ The parse-tree consists of nested nodes like
```js ```js
{type: "element", tag: <string>, attributes: {}, children: []} - an HTML element {type: "element", tag: <string>, attributes: {}, children: []} - an HTML element
{type: "text", text: <string>} - a text node {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 {type: "raw", html: <string>} - raw HTML
``` ```