16 lines
366 B
Smalltalk
16 lines
366 B
Smalltalk
Extension { #name : #LeTextSnippet }
|
|
|
|
{ #category : #'*Grafoscopio-Utils-Core' }
|
|
LeTextSnippet >> contentFrom: markdeepDiv [
|
|
| sanitized |
|
|
sanitized := markdeepDiv contentString.
|
|
sanitized := sanitized allButFirst.
|
|
sanitized := sanitized allButLast.
|
|
self string: sanitized.
|
|
]
|
|
|
|
{ #category : #'*Grafoscopio-Utils-Core' }
|
|
LeTextSnippet >> options [
|
|
^ options
|
|
]
|