Improving Markdown to Markdeep conversion.
This commit is contained in:
parent
2bcf67a132
commit
c38945da71
@ -9,6 +9,7 @@ LeTextSnippet >> asLePage [
|
|||||||
self childrenDo: [:child |
|
self childrenDo: [:child |
|
||||||
child moveToPageTitled: page title
|
child moveToPageTitled: page title
|
||||||
].
|
].
|
||||||
|
self removeSelfCommand.
|
||||||
^ page.
|
^ page.
|
||||||
]
|
]
|
||||||
|
|
||||||
|
@ -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' }
|
||||||
|
Loading…
Reference in New Issue
Block a user