This commit is contained in:
ruidajo 2022-07-25 18:54:48 -05:00
commit c838289aea
2 changed files with 3 additions and 3 deletions

View File

@ -135,7 +135,7 @@ LePage >> options [
LePage >> preorderTraversal [ LePage >> preorderTraversal [
| output | | output |
output := OrderedCollection new. output := OrderedCollection new.
self withDeepCollect: [:each | each allChildrenBreadthFirstDo: [:child | output add: child ] ]. self withDeepCollect: [:each | each allChildrenBreadthFirstDo: [:child | output add: child]].
^ output. ^ output.
] ]

View File

@ -2,7 +2,7 @@ Extension { #name : #LePharoSnippet }
{ #category : #'*MiniDocs' } { #category : #'*MiniDocs' }
LePharoSnippet >> markdeepCustomCloser [ LePharoSnippet >> markdeepCustomCloser [
^ String streamContents: [:stream | ^ String streamContents: [ :stream |
stream stream
nextPutAll: '~~~'; lf; nextPutAll: '~~~'; lf;
nextPutAll: '</script>'; lf. nextPutAll: '</script>'; lf.
@ -11,7 +11,7 @@ LePharoSnippet >> markdeepCustomCloser [
{ #category : #'*MiniDocs' } { #category : #'*MiniDocs' }
LePharoSnippet >> markdeepCustomOpener [ LePharoSnippet >> markdeepCustomOpener [
^ String streamContents: [:stream | ^ String streamContents: [ :stream |
stream stream
nextPutAll: '<script type="preformatted">'; lf; nextPutAll: '<script type="preformatted">'; lf;
nextPutAll: '~~~ Smalltalk'; lf nextPutAll: '~~~ Smalltalk'; lf