Reading tiddlers now from the HTML directly! (after 5.2.x series)
This commit is contained in:
parent
438bff833c
commit
8678a915fa
@ -98,6 +98,16 @@ TiddlyWiki >> fromDictionary: tiddlersDict [
|
|||||||
wiki: self ])
|
wiki: self ])
|
||||||
]
|
]
|
||||||
|
|
||||||
|
{ #category : #accessing }
|
||||||
|
TiddlyWiki >> fromUrl: anUrlString [
|
||||||
|
| docTree rawJsonTiddlers tiddlersDictionary |
|
||||||
|
self remote: anUrlString.
|
||||||
|
docTree := XMLHTMLParser parse: (self remote retrieveContents).
|
||||||
|
rawJsonTiddlers := (docTree xpath: '//script[@class="tiddlywiki-tiddler-store"]') stringValue.
|
||||||
|
tiddlersDictionary := STONJSON fromString: rawJsonTiddlers.
|
||||||
|
self fromDictionary: tiddlersDictionary
|
||||||
|
]
|
||||||
|
|
||||||
{ #category : #accessing }
|
{ #category : #accessing }
|
||||||
TiddlyWiki >> importJSONFile [
|
TiddlyWiki >> importJSONFile [
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user