Merge af9f4b2886
This commit is contained in:
commit
c838289aea
@ -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.
|
||||
]
|
||||
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user