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 [
super printOn: aStream.
aStream
nextPutAll: '( ', self title accentedCharactersCorrection, ' )'
nextPutAll: '( ', self title, ' )'
]
{ #category : #'instance creation' }

View File

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