From af660ee717f7e76303ba4672bd18ee0d57683dda Mon Sep 17 00:00:00 2001 From: Gosha Arinich Date: Sun, 6 Jan 2013 01:46:30 +0300 Subject: place article name in the beginning of guides page title --- guides/rails_guides/markdown.rb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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 -- cgit v1.2.3