Skip to content

Commit

Permalink
fix: 17348
Browse files Browse the repository at this point in the history
  • Loading branch information
Ducasse committed Dec 1, 2024
1 parent 2604363 commit 897fb80
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions src/Microdown-BrowserExtensions/Class.extension.st
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,18 @@ Class >> addDocumentSectionTo: aBuilder label: label methods: methods [
{ #category : '*Microdown-BrowserExtensions' }
Class >> buildMicroDownUsing: aBuilder withComment: aString [

aString.

aBuilder
header: [ aBuilder text: 'Class: '.
aBuilder text: self name ] withLevel: 1;
horizontalLine;
text: aString.

self addDocumentSectionExampleCodeTo: aBuilder.

self
addDocumentSectionTo: aBuilder
label: 'Examples'
methods: (self class methods select: [ :each | each protocol = self documentExamplesProtocol ])
]

{ #category : '*Microdown-BrowserExtensions' }
Expand Down

0 comments on commit 897fb80

Please sign in to comment.