Skip to content
This repository has been archived by the owner on Apr 5, 2018. It is now read-only.

Commit

Permalink
update pygments dep
Browse files Browse the repository at this point in the history
  • Loading branch information
rvagg committed Sep 16, 2014
1 parent fb961c7 commit 20dcba7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
, "dependencies": {
"map-async": "~0.1.1"
, "marked": "~0.2.5"
, "pygmentize-bundled": "~2.0.0"
, "pygmentize-bundled": "~2.2.0"
}
, "keywords": [
"markdown"
Expand Down
4 changes: 2 additions & 2 deletions test.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ var assert = require('assert')
}
, {
input: '#Foo!\n##bar\n`bang`\n\nboom'
, output: '<h1>Foo!</h1><h2>bar</h2><p><code>bang</code></p><p>boom</p>'
, output: '<h1 id="foo-">Foo!</h1><h2 id="bar">bar</h2><p><code>bang</code></p><p>boom</p>'
}
]

Expand All @@ -22,4 +22,4 @@ cases.forEach(function (c) {
result = result.toString().replace(/\n/g, '')
assert.equal(result, c.output)
})
})
})

0 comments on commit 20dcba7

Please sign in to comment.