Repackaging from GrafoscopioUtils

This commit is contained in:
Offray Vladimir Luna Cárdenas 2022-07-19 18:27:29 -05:00
parent 353a4da578
commit aae78c0768
1 changed files with 35 additions and 0 deletions

View File

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