diff options
author | Nate Berkopec <nate.berkopec@gmail.com> | 2013-10-27 15:14:41 -0400 |
---|---|---|
committer | Nate Berkopec <nate.berkopec@gmail.com> | 2014-05-05 17:42:04 -0400 |
commit | 220528548b43b949a752ed9bcbc2f83fa6c75560 (patch) | |
tree | ad2982b5fa9498f3209860ba36285196fe978824 /guides/rails_guides | |
parent | 4efb0f373047c44249bc6542fdf9969e4c63dd88 (diff) | |
download | rails-220528548b43b949a752ed9bcbc2f83fa6c75560.tar.gz rails-220528548b43b949a752ed9bcbc2f83fa6c75560.tar.bz2 rails-220528548b43b949a752ed9bcbc2f83fa6c75560.zip |
Guides: output valid HTML5
[ci skip]
Diffstat (limited to 'guides/rails_guides')
-rw-r--r-- | guides/rails_guides/helpers.rb | 2 | ||||
-rw-r--r-- | guides/rails_guides/markdown.rb | 10 | ||||
-rw-r--r-- | guides/rails_guides/markdown/renderer.rb | 2 |
3 files changed, 7 insertions, 7 deletions
diff --git a/guides/rails_guides/helpers.rb b/guides/rails_guides/helpers.rb index 169453400f..a78c2e9fca 100644 --- a/guides/rails_guides/helpers.rb +++ b/guides/rails_guides/helpers.rb @@ -39,7 +39,7 @@ module RailsGuides def author(name, nick, image = 'credits_pic_blank.gif', &block) image = "images/#{image}" - result = content_tag(:img, nil, :src => image, :class => 'left pic', :alt => name, :width => 91, :height => 91) + 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) diff --git a/guides/rails_guides/markdown.rb b/guides/rails_guides/markdown.rb index 547c6d2c15..dbf7ff311d 100644 --- a/guides/rails_guides/markdown.rb +++ b/guides/rails_guides/markdown.rb @@ -79,10 +79,10 @@ module RailsGuides def generate_structure @headings_for_index = [] if @body.present? - @body = Nokogiri::HTML(@body).tap do |doc| + @body = Nokogiri::HTML.fragment(@body).tap do |doc| hierarchy = [] - doc.at('body').children.each do |node| + doc.children.each do |node| if node.name =~ /^h[3-6]$/ case node.name when 'h3' @@ -116,7 +116,7 @@ module RailsGuides end end - @index = Nokogiri::HTML(engine.render(raw_index)).tap do |doc| + @index = Nokogiri::HTML.fragment(engine.render(raw_index)).tap do |doc| doc.at('ol')[:class] = 'chapters' end.to_html @@ -130,8 +130,8 @@ module RailsGuides end def generate_title - if heading = Nokogiri::HTML(@header).at(:h2) - @title = "#{heading.text} — Ruby on Rails Guides".html_safe + if heading = Nokogiri::HTML.fragment(@header).at(:h2) + @title = "#{heading.text} — Ruby on Rails Guides" else @title = "Ruby on Rails Guides" end diff --git a/guides/rails_guides/markdown/renderer.rb b/guides/rails_guides/markdown/renderer.rb index 2eb7ca17a3..3791ed6fd5 100644 --- a/guides/rails_guides/markdown/renderer.rb +++ b/guides/rails_guides/markdown/renderer.rb @@ -15,7 +15,7 @@ module RailsGuides HTML end - def header(text, header_level) + def header(text, header_level, anchor) # Always increase the heading level by, so we can use h1, h2 heading in the document header_level += 1 |