2023-04-04 01:02:24 +00:00
|
|
|
Class {
|
|
|
|
#name : #PPCMLinkRefDefPlaceholder,
|
|
|
|
#superclass : #PPCMNode,
|
|
|
|
#category : #'PetitMarkdown-AST'
|
|
|
|
}
|
|
|
|
|
|
|
|
{ #category : #'as yet unclassified' }
|
|
|
|
PPCMLinkRefDefPlaceholder >> accept: visitor [
|
|
|
|
^ visitor visitLinkRefDefPlaceholder: self
|
|
|
|
]
|
|
|
|
|
|
|
|
{ #category : #'as yet unclassified' }
|
|
|
|
PPCMLinkRefDefPlaceholder >> isBlockLevel [
|
|
|
|
^ true
|
|
|
|
]
|
2023-04-06 13:47:40 +00:00
|
|
|
|
|
|
|
{ #category : #accessing }
|
|
|
|
PPCMLinkRefDefPlaceholder >> viewBody [
|
|
|
|
|
|
|
|
| aText |
|
|
|
|
aText := (self className ) asRopedText.
|
|
|
|
|
|
|
|
self children do: [ :child |
|
|
|
|
aText append: ' ' asRopedText.
|
|
|
|
aText append: (child className asRopedText foreground:
|
|
|
|
BrGlamorousColors disabledButtonTextColor).
|
|
|
|
].
|
|
|
|
|
|
|
|
|
|
|
|
^ aText
|
|
|
|
]
|