Skip to content

Conversation

@creatorrr
Copy link

Minor typo in Rakefile:
Changed this

def generate(page, template = "site/page.ms")
  Mustache.render(
    File.read(template),
    page.merge(:content => RDiscount.new(File.read(page[:src])).to_html),
  )
end

(Note the , at the end of the third last line)
to

def generate(page, template = "site/page.ms")
  Mustache.render(
    File.read(template),
    page.merge(:content => RDiscount.new(File.read(page[:src])).to_html)
  )
end

adrianholovaty and others added 2 commits August 29, 2012 18:01
Signed-off-by: Diwank Singh <diwank.singh@gmail.com>
Signed-off-by: Diwank Singh <diwank.singh@gmail.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants