diff options
author | Gosha Arinich <me@goshakkk.name> | 2013-01-06 01:46:30 +0300 |
---|---|---|
committer | Gosha Arinich <me@goshakkk.name> | 2013-01-06 01:46:30 +0300 |
commit | af660ee717f7e76303ba4672bd18ee0d57683dda (patch) | |
tree | f448c1643836c18dee58b75be6d4a49745d65bc8 /guides/rails_guides | |
parent | 2516a1d5c8d3d1391f56d7e8319b4e6342e6bef2 (diff) | |
download | rails-af660ee717f7e76303ba4672bd18ee0d57683dda.tar.gz rails-af660ee717f7e76303ba4672bd18ee0d57683dda.tar.bz2 rails-af660ee717f7e76303ba4672bd18ee0d57683dda.zip |
place article name in the beginning of guides page title
Diffstat (limited to 'guides/rails_guides')
-rw-r--r-- | guides/rails_guides/markdown.rb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/guides/rails_guides/markdown.rb b/guides/rails_guides/markdown.rb index 650489e6cb..547c6d2c15 100644 --- a/guides/rails_guides/markdown.rb +++ b/guides/rails_guides/markdown.rb @@ -1,3 +1,5 @@ +# encoding: utf-8 + require 'redcarpet' require 'nokogiri' require 'rails_guides/markdown/renderer' @@ -129,7 +131,7 @@ module RailsGuides def generate_title if heading = Nokogiri::HTML(@header).at(:h2) - @title = "Ruby on Rails Guides: #{heading.text}".html_safe + @title = "#{heading.text} — Ruby on Rails Guides".html_safe else @title = "Ruby on Rails Guides" end |