Update dependencies

This commit is contained in:
Tom MacWright
2016-07-19 16:20:11 -04:00
parent 91e7e42213
commit febfa13608
4 changed files with 23 additions and 23 deletions

View File

@ -34,7 +34,7 @@ function extractSections(ast) {
var slugs = {};
describe('global rules', () => {
var ast = remark.parse(allPages);
var ast = remark().parse(allPages);
var seen = {};
/**
* Check that titles are unique. This is to ensure that permalinks
@ -58,7 +58,7 @@ describe('content', () => {
fs.readdirSync('./content').forEach(function(file) {
describe(file, () => {
var content = fs.readFileSync('./content/' + file, 'utf8');
var ast = remark.parse(content);
var ast = remark().parse(content);
it('links are valid', function() {
visit(ast, 'link', node => {