When the installation instructions tell you to run grunt, an error message comes up:
Deprecation: The 'pygments' configuration option has been renamed to 'highlighter'. Please update your config file accordingly. The allowed values are 'rouge', 'pygments' or null.
The solution is to change line 18 of Gruntfile.js from:
When the installation instructions tell you to run grunt, an error message comes up:
Deprecation: The 'pygments' configuration option has been renamed to 'highlighter'. Please update your config file accordingly. The allowed values are 'rouge', 'pygments' or null.
The solution is to change line 18 of Gruntfile.js from:
"pygments: true \r\n";
to:
"highlighter: pygments \r\n";