Improving Markdown to Markdeep conversion.

This commit is contained in:
Offray Vladimir Luna Cárdenas 2023-01-29 18:05:07 -05:00
parent 2bcf67a132
commit c38945da71
2 changed files with 3 additions and 2 deletions

View File

@ -9,6 +9,7 @@ LeTextSnippet >> asLePage [
self childrenDo: [:child | self childrenDo: [:child |
child moveToPageTitled: page title child moveToPageTitled: page title
]. ].
self removeSelfCommand.
^ page. ^ page.
] ]

View File

@ -132,7 +132,7 @@ Markdeep >> contents [
output := '' writeStream. output := '' writeStream.
output output
nextPutAll: self headContents; lf; lf; nextPutAll: self headContents; lf; lf;
nextPutAll: ' **', self title trimmed, '**'; lf; nextPutAll: ' **', self title trimmed accentedCharactersCorrection, '**'; lf;
nextPutAll: self authorsString ; lf; nextPutAll: self authorsString ; lf;
nextPutAll: '', self version; lf; nextPutAll: '', self version; lf;
nextPutAll: self navTop; lf; lf; nextPutAll: self navTop; lf; lf;
@ -295,7 +295,7 @@ Markdeep >> printOn: aStream [
super printOn: aStream. super printOn: aStream.
aStream aStream
nextPutAll: '( ', self title, ' )' nextPutAll: '( ', self title accentedCharactersCorrection, ' )'
] ]
{ #category : #'instance creation' } { #category : #'instance creation' }