mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-10-31 23:26:18 +00:00
Merge pull request #2045 from tgrosinger/patch-1
Fix typo which prevented example from working
This commit is contained in:
commit
72cd6a5802
@ -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 © for a copyright symbol
|
||||
{type: "entity", entity: <string>} - an HTML entity like © 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
|
||||
```
|
||||
```
|
||||
|
Loading…
Reference in New Issue
Block a user