summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2021-01-21 19:43:02 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2021-01-24 16:46:17 +0900
commitb88d1e6b44164bca0c2b85ea6639469813e1e1d8 (patch)
treeebe3b2332ba8e2ec1660b0dbfe2072c416e74f52 /lib
parentbb570ce6d80d28cfc7131dcb72885eed2f989b30 (diff)
[ruby/rdoc] Make each commit entries h3
https://github.com/ruby/rdoc/commit/11eefb2ae9
Diffstat (limited to 'lib')
-rw-r--r--lib/rdoc/parser/changelog.rb12
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/rdoc/parser/changelog.rb b/lib/rdoc/parser/changelog.rb
index 3634b6a6eb..763ba03d2c 100644
--- a/lib/rdoc/parser/changelog.rb
+++ b/lib/rdoc/parser/changelog.rb
@@ -226,13 +226,13 @@ class RDoc::Parser::ChangeLog < RDoc::Parser
def create_entries entries
# git log entries have no strictly itemized style like the old
# style, just assume Markdown.
- entries.map do |entry, (author, date, body)|
- list = RDoc::Markup::List.new(:NOTE)
- author = RDoc::Markup::Paragraph.new(author)
- list << RDoc::Markup::ListItem.new(date, author)
- RDoc::Markdown.parse(body).parts.each {|b| list << b}
- list
+ out = []
+ entries.each do |entry, (author, date, body)|
+ title = RDoc::Markup::Heading.new(3, "#{date} #{author}")
+ out << title
+ out.concat RDoc::Markdown.parse(body).parts
end
+ out
end
end
end