Repackaging from GrafoscopioUtils.

This commit is contained in:
Offray Vladimir Luna Cárdenas 2022-07-25 18:51:28 -05:00
parent 2989ba0986
commit af9f4b2886
2 changed files with 3 additions and 3 deletions

View File

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

View File

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