diff --git a/src/MiniDocs/LePharoSnippet.extension.st b/src/MiniDocs/LePharoSnippet.extension.st index 96cea95..15ddb30 100644 --- a/src/MiniDocs/LePharoSnippet.extension.st +++ b/src/MiniDocs/LePharoSnippet.extension.st @@ -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' }