mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Cleanup credits related code as it is removed now in PR #32429
This commit is contained in:
parent
c9b606dfe7
commit
ecb6ee5948
2 changed files with 1 additions and 10 deletions
|
@ -38,15 +38,6 @@ module RailsGuides
|
|||
end
|
||||
end
|
||||
|
||||
def author(name, nick, image = "credits_pic_blank.gif", &block)
|
||||
image = "images/#{image}"
|
||||
|
||||
result = tag(:img, src: image, class: "left pic", alt: name, width: 91, height: 91)
|
||||
result << content_tag(:h3, name)
|
||||
result << content_tag(:p, capture(&block))
|
||||
content_tag(:div, result, class: "clearfix", id: nick)
|
||||
end
|
||||
|
||||
def code(&block)
|
||||
c = capture(&block)
|
||||
content_tag(:code, c)
|
||||
|
|
|
@ -35,7 +35,7 @@ module Kindle
|
|||
def generate_front_matter(html_pages)
|
||||
frontmatter = []
|
||||
html_pages.delete_if { |x|
|
||||
if x =~ /(toc|welcome|credits|copyright).html/
|
||||
if x =~ /(toc|welcome|copyright).html/
|
||||
frontmatter << x unless x =~ /toc/
|
||||
true
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue