Class { #name : #PPCMEmphasize, #superclass : #PPCMDelegateNode, #category : #'PetitMarkdown-AST' } { #category : #visiting } PPCMEmphasize >> accept: visitor [ ^ visitor visitEmphasize: self ] { #category : #accessing } PPCMEmphasize >> viewBody [ | aText | aText := (self className ,' ', self text) asRopedText. self children do: [ :child | aText append: ' ' asRopedText. aText append: (child text asRopedText foreground: BrGlamorousColors disabledButtonTextColor). aText append: ('= "' asRopedText foreground: BrGlamorousColors disabledButtonTextColor). aText append: (child text asRopedText foreground: BrGlamorousColors disabledButtonTextColor). aText append: ('"' asRopedText foreground: BrGlamorousColors disabledButtonTextColor) ]. ^ aText ]