Merge a541301d0e
This commit is contained in:
commit
7097dc26e3
@ -236,11 +236,21 @@ TiddlyWiki >> tiddlersJSONUrl [
|
|||||||
]
|
]
|
||||||
|
|
||||||
{ #category : #accessing }
|
{ #category : #accessing }
|
||||||
TiddlyWiki >> withoutImages [
|
TiddlyWiki >> withoutApplicationType: application [
|
||||||
| filteredTiddlers tempWiki |
|
| filteredTiddlers tempWiki |
|
||||||
filteredTiddlers := self tiddlers reject: [:tiddler | tiddler type isNotNil and: [tiddler type beginsWith: 'image/'] ].
|
filteredTiddlers := self tiddlers reject: [:tiddler | tiddler type isNotNil and: [tiddler type beginsWith: application] ].
|
||||||
tempWiki := self copy
|
tempWiki := self copy
|
||||||
tiddlers: filteredTiddlers.
|
tiddlers: filteredTiddlers.
|
||||||
tempWiki tiddlers do: [:tiddler | tiddler wiki: tempWiki ].
|
tempWiki tiddlers do: [:tiddler | tiddler wiki: tempWiki ].
|
||||||
^ tempWiki
|
^ tempWiki
|
||||||
]
|
]
|
||||||
|
|
||||||
|
{ #category : #accessing }
|
||||||
|
TiddlyWiki >> withoutImages [
|
||||||
|
^ self withoutApplicationType: 'image/'
|
||||||
|
]
|
||||||
|
|
||||||
|
{ #category : #accessing }
|
||||||
|
TiddlyWiki >> withoutPDFs [
|
||||||
|
^ self withoutApplicationType: 'application/pdf'
|
||||||
|
]
|
||||||
|
Loading…
Reference in New Issue
Block a user