Generalizing links detection.
This commit is contained in:
parent
e8c7021bfa
commit
bde6c31869
@ -526,8 +526,13 @@ Tiddler >> rawAliasedLinks [
|
||||
|
||||
{ #category : #accessing }
|
||||
Tiddler >> rawLinks [
|
||||
self text ifNil: [ ^ Set new ].
|
||||
^ (WikiTextGrammar new linkSea star parse: self text) asSet
|
||||
^ self rawLinksIn: self text
|
||||
]
|
||||
|
||||
{ #category : #accessing }
|
||||
Tiddler >> rawLinksIn: aText [
|
||||
aText ifNil: [ ^ Set new ].
|
||||
^ (WikiTextGrammar new linkSea star parse: aText) asSet
|
||||
]
|
||||
|
||||
{ #category : #accessing }
|
||||
|
Loading…
Reference in New Issue
Block a user