Add Lepiter snippets for Carp

This commit is contained in:
2022-04-16 18:32:16 +02:00
parent 60321973fb
commit f1cac9749e
34 changed files with 597 additions and 61 deletions

View File

@@ -0,0 +1,13 @@
Extension { #name : #LeRoamJSONExportVisitor }
{ #category : #'*Carp' }
LeRoamJSONExportVisitor >> visitCarpSnippet: aSnippet [
^ String streamContents: [ :aStream |
aStream
<< '```javascript';
cr;
<< aSnippet code;
cr;
<< '```' ]
]