Skip to content

Commit 783a664

Browse files
committed
Fix section comments in darkfish
This is almost certainly the wrong way to do this. But the lack of section comments has been bugging me for years, and this was my first attempt at figuring out why it is broken. Maybe someone else can fix it The Right Way, or give me some advice on how to do so myself...
1 parent 45259f9 commit 783a664

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

lib/rdoc/context/section.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ def marshal_load array
177177
# Parses +comment_location+ into an RDoc::Markup::Document composed of
178178
# multiple RDoc::Markup::Documents with their file set.
179179

180-
def parse
180+
def parse _comment_location
181181
case @comments
182182
when String then
183183
super

lib/rdoc/generator/markup.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def as_href(from_path)
2525
# Handy wrapper for marking up this object's comment
2626

2727
def description
28-
markup @comment
28+
markup @comment || @comments&.first
2929
end
3030

3131
##

lib/rdoc/generator/template/darkfish/class.rhtml

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
</header>
3939
<%- end -%>
4040

41-
<%- if section.comment then -%>
41+
<%- if section.comment || section.comments.any? then -%>
4242
<div>
4343
<%= section.description %>
4444
</div>

lib/rdoc/text.rb

+1
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,7 @@ def flush_left text
9595
# Requires the including class to implement #formatter
9696

9797
def markup text
98+
@store ||= @parent&.store
9899
if @store.rdoc.options
99100
locale = @store.rdoc.options.locale
100101
else

0 commit comments

Comments
 (0)