Adding Markdeep captions exportation, now that thy're finally supported in Lepiter's picture snippets.

This commit is contained in:
Offray Vladimir Luna Cárdenas 2023-03-05 18:08:22 -05:00
parent 415c3f0b66
commit b25234a5bb
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@ LePictureSnippet >> asMarkdeep [
output := WriteStream on: ''.
output
nextPutAll: self metadataDiv;
nextPutAll: '![](', self urlString, ')';
nextPutAll: '![ ', self caption ,' ](', self urlString, ')';
nextPut: Character lf;
nextPutAll: '</div>';
nextPut: Character lf;