aboutsummaryrefslogtreecommitdiffstats
path: root/guides/rails_guides
diff options
context:
space:
mode:
authorRuy Diaz <diazruy@gmail.com>2017-04-01 21:35:20 -0700
committerRuy Diaz <diazruy@gmail.com>2017-04-01 21:35:20 -0700
commitb5c56090ee5f71134b85e3cdf7e3b89093649fac (patch)
tree7055b4bf6f9133ed5632eeba331ce1dd71fedc04 /guides/rails_guides
parent56014880a2d25416befbd2e440fc94c2b66a0026 (diff)
downloadrails-b5c56090ee5f71134b85e3cdf7e3b89093649fac.tar.gz
rails-b5c56090ee5f71134b85e3cdf7e3b89093649fac.tar.bz2
rails-b5c56090ee5f71134b85e3cdf7e3b89093649fac.zip
Add anchor links to all headers
To allow easy linking at all levels and not just from index
Diffstat (limited to 'guides/rails_guides')
-rw-r--r--guides/rails_guides/markdown.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/guides/rails_guides/markdown.rb b/guides/rails_guides/markdown.rb
index bf2cc82c7c..16aaa7d1eb 100644
--- a/guides/rails_guides/markdown.rb
+++ b/guides/rails_guides/markdown.rb
@@ -105,6 +105,10 @@ module RailsGuides
node.inner_html = "#{node_index(hierarchy)} #{node.inner_html}"
end
end
+
+ doc.css('h3, h4, h5, h6').each do |node|
+ node.inner_html = "<a class='anchorlink' href='##{node[:id]}'>#{node.inner_html}</a>"
+ end
end.to_html
end
end