2022-02-02 23:35:39 +00:00
|
|
|
Extension { #name : #LeTextSnippet }
|
|
|
|
|
|
|
|
{ #category : #'*Grafoscopio-Utils-Core' }
|
|
|
|
LeTextSnippet >> contentFrom: markdeepDiv [
|
|
|
|
| sanitized |
|
|
|
|
sanitized := markdeepDiv contentString.
|
|
|
|
sanitized := sanitized allButFirst.
|
|
|
|
sanitized := sanitized allButLast.
|
|
|
|
self string: sanitized.
|
|
|
|
]
|
2022-02-04 17:15:57 +00:00
|
|
|
|
|
|
|
{ #category : #'*Grafoscopio-Utils-Core' }
|
|
|
|
LeTextSnippet >> options [
|
|
|
|
^ options
|
|
|
|
]
|