Skip to content

Commit 245dbb3

Browse files
authoredJul 17, 2018
Merge pull request #6 from blakeembrey/patch-1
Show usage with syntax highlighting
2 parents baacb43 + 77dd49d commit 245dbb3

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed
 

‎Readme.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,16 @@
2929

3030
```js
3131
var markdown = require('metalsmith-markdown');
32+
var highlighter = require('highlighter');
3233

3334
metalsmith.use(markdown({
3435
smartypants: true,
3536
gfm: true,
36-
tables: true
37+
tables: true,
38+
highlight: highlighter()
3739
}));
3840
```
3941

4042
## License
4143

42-
MIT
44+
MIT

0 commit comments

Comments
 (0)
Please sign in to comment.