Pharo snippets: starting support for interactive JavaScript Echats exportation.

This commit is contained in:
Offray Vladimir Luna Cárdenas 2022-07-27 12:57:57 -05:00
parent e393519bf4
commit 5a685a7fca
1 changed files with 3 additions and 3 deletions

View File

@ -2,10 +2,10 @@ Extension { #name : #LePharoSnippet }
{ #category : #'*MiniDocs' }
LePharoSnippet >> contentAsStringCustomized [
| customCoder |
| thisObject |
(self tags includes: 'output') ifFalse: [ ^ self contentAsString ].
customCoder := GtPharoSnippetCoder forSource: self contentAsString.
^ (customCoder doItAll) value greaseString
thisObject := ((self page sharedVariablesBindings) at: self detectObject) value.
^ thisObject perform: self detectMessage trimmed asSymbol.
]
{ #category : #'*MiniDocs' }