From b4f2564f6715922d200eb0d033e1e098f3fc6f2f Mon Sep 17 00:00:00 2001 From: Offray Luna Date: Tue, 26 Mar 2024 06:55:48 -0500 Subject: [PATCH] Debugging title underline. --- src/MiniDocs/Markdeep.class.st | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/MiniDocs/Markdeep.class.st b/src/MiniDocs/Markdeep.class.st index 0727910..39e7d82 100644 --- a/src/MiniDocs/Markdeep.class.st +++ b/src/MiniDocs/Markdeep.class.st @@ -148,7 +148,7 @@ Markdeep >> contents [ nextPutAll: self authorsString ; lf; nextPutAll: '', self version; lf; nextPutAll: self navTop; lf; lf; - nextPutAll: self body; lf; lf; + nextPutAll: self body; lf; lf; nextPutAll: self tail; lf; lf; lf; lf; nextPutAll: self commentsSupport. ^ output contents. @@ -650,7 +650,7 @@ Markdeep >> tail: anObject [ { #category : #accessing } Markdeep >> title [ - ^ title ifNil: [ title := self metadata at: 'title' ifAbsent: [ '' ] ] + ^ title ] { #category : #accessing }