2023-04-04 01:02:24 +00:00
|
|
|
Class {
|
|
|
|
#name : #PPCMStrong,
|
|
|
|
#superclass : #PPCMDelegateNode,
|
|
|
|
#category : #'PetitMarkdown-AST'
|
|
|
|
}
|
|
|
|
|
|
|
|
{ #category : #visiting }
|
|
|
|
PPCMStrong >> accept: visitor [
|
|
|
|
^ visitor visitStrong: self
|
|
|
|
]
|
2023-04-06 14:08:04 +00:00
|
|
|
|
|
|
|
{ #category : #accessing }
|
|
|
|
PPCMStrong >> viewBody [
|
|
|
|
|
|
|
|
| aText |
|
|
|
|
aText := (self className ,' ',
|
|
|
|
self text) asRopedText.
|
|
|
|
|
|
|
|
self children do: [ :child |
|
|
|
|
aText append: ' ' asRopedText.
|
|
|
|
aText append: (child className asRopedText foreground:
|
|
|
|
BrGlamorousColors disabledButtonTextColor)
|
|
|
|
].
|
|
|
|
|
|
|
|
|
|
|
|
^ aText
|
|
|
|
]
|