Class { #name : #PPCMContainer, #superclass : #PPCMDelegateNode, #category : #'PetitMarkdown-AST' } { #category : #'as yet unclassified' } PPCMContainer >> accept: visitor [ ^ visitor visitContainer: self ] { #category : #accessing } PPCMContainer >> viewBody [ | aText | aText := self className asRopedText. self children do: [ :child | aText append: ' ' asRopedText. aText append: (child className asRopedText foreground: BrGlamorousColors disabledButtonTextColor) ]. ^ aText ]