thomasdavis / backbonetutorials

As single page apps and large scale javascript applications become more prominent on the web, useful resources for those developers who are jumping the ship are crucial.
http://backbonetutorials.com
2.3k stars 1.71k forks source link

Deprecation message after jekyll serve #144

Closed zorobabel closed 8 years ago

zorobabel commented 8 years ago

Hi there.

After:

jekyll serve

I get:

Deprecation: The 'pygments' configuration option has been renamed to 'hig
hlighter'. Please update your config file accordingly. The allowed values are 'r
ouge', 'pygments' or null.
            Source: D:/backbonetutorials-gh-pages
       Destination: D:/backbonetutorials-gh-pages/_site
 Incremental build: disabled. Enable with --incremental
      Generating...
     Build Warning: Layout 'nil' requested in atom.xml does not exist.
     Build Warning: Layout 'nil' requested in rss.xml does not exist.
                    done in 0.612 seconds.
  Please add the following to your Gemfile to avoid polling for changes:
    gem 'wdm', '>= 0.1.0' if Gem.win_platform?
 Auto-regeneration: enabled for 'D:/backbonetutorials-gh-pages'
Configuration file: D:/backbonetutorials-gh-pages/_config.yml
       Deprecation: The 'pygments' configuration option has been renamed to 'hig
hlighter'. Please update your config file accordingly. The allowed values are 'r
ouge', 'pygments' or null.
    Server address: http://127.0.0.1:4000/
  Server running... press ctrl-c to stop.

To fix it, I edited _config.yml to:

markdown: redcarpet
highlighter: pygments
permalink: /:title

Environment:

Windows 8.1 [x64] ruby 2.2.3p173 (2015-08-18 revision 51636) [x64-mingw32] jekyll 3.1.3

HTH.