code section missing line breaks

I just did a pull, on page 'Getting Started with Rails' I noticed all code sample section are messed up, missing newline? is this a css error?

I am seeing:

class CreatePosts < ActiveRecord::Migration def self.up create_table :posts do |t| t.string :name t.string :title t.text :content t.timestamps end end def self.down drop_table :posts end end

When I should see

class CreatePosts < ActiveRecord::Migration    def self.up      create_table :posts do |t|        t.string :name        t.string :title        t.text :content

       t.timestamps      end    end

   def self.down      drop_table :posts    end end

I see it OK in

    Getting Started with Rails — Ruby on Rails Guides

Which browser are you using?

yes that looks good, however the one I built locally last night after a git pull is showing everything as a big continuous line? I've done this many times in the past followed by a

rake generate_guides

the other guide pages seem ok, I am using FF 3.6.12

I can check again when I get home, I'll do a clean clone also and report back.

i deleted the output folder and generated the guide again, everything looks ok now.

Excellent Rajinder, thanks for the heads up.

You're welcome Xavier!