Improving defaults.

This commit is contained in:
Offray Vladimir Luna Cárdenas 2022-09-07 07:58:06 -05:00
parent 5af60513e9
commit c08e8b3bb8
1 changed files with 2 additions and 1 deletions

View File

@ -88,7 +88,7 @@ Markdeep >> commentsSupport [
{ #category : #accessing }
Markdeep >> config [
^ config
^ config ifNil: [ config := Dictionary new]
]
{ #category : #accessing }
@ -100,6 +100,7 @@ Markdeep >> config: aDictionary [
{ #category : #'instance creation' }
Markdeep >> contents [
| output |
self title ifNil: [ ^ self body ].
output := '' writeStream.
output
nextPutAll: self headContents; lf; lf;