Improving title printing.

This commit is contained in:
Offray Vladimir Luna Cárdenas 2023-07-03 22:33:24 -05:00
parent f5006572e8
commit 7a7dfa648d
2 changed files with 2 additions and 2 deletions

View File

@ -298,7 +298,7 @@ Markdeep >> options [
Markdeep >> printOn: aStream [ Markdeep >> printOn: aStream [
super printOn: aStream. super printOn: aStream.
aStream aStream
nextPutAll: '( ', self title accentedCharactersCorrection, ' )' nextPutAll: '( ', self title, ' )'
] ]
{ #category : #'instance creation' } { #category : #'instance creation' }

View File

@ -108,7 +108,7 @@ MiniDocs class >> yamlToJson: yamlString [
arguments: {yamlString}; arguments: {yamlString};
redirectStdout; redirectStdout;
runAndWaitOnExitDo: [ :process :outString | runAndWaitOnExitDo: [ :process :outString |
^ (STONJSON fromString: outString allButFirst) first ^ (STONJSON fromString: outString allButFirst accentedCharactersCorrection) first
] ]
] ]