Repackaging from GrafoscopioUtils
This commit is contained in:
parent
353a4da578
commit
aae78c0768
35
src/MiniDocs/LePharoSnippet.extension.st
Normal file
35
src/MiniDocs/LePharoSnippet.extension.st
Normal 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
|
||||
]
|
||||
]
|
Loading…
Reference in New Issue
Block a user