Skip to content

Commit dc1f1cb

Browse files
committed
chore: fix syntax highlight
1 parent 03f932f commit dc1f1cb

File tree

4 files changed

+6749
-4669
lines changed

4 files changed

+6749
-4669
lines changed

gatsby-browser.js

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
// custom typefaces
22
import "typeface-montserrat"
33
import "typeface-merriweather"
4+
require("prismjs/themes/prism.css");

gatsby-config.js

+8-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,14 @@ module.exports = {
3939
wrapperStyle: `margin-bottom: 1.0725rem`,
4040
},
4141
},
42-
`gatsby-remark-prismjs`,
42+
{
43+
resolve: 'gatsby-remark-prismjs',
44+
options: {
45+
inlineCodeMarker: null,
46+
},
47+
aliases: {},
48+
},
49+
// `gatsby-remark-prismjs`,
4350
`gatsby-remark-copy-linked-files`,
4451
`gatsby-remark-smartypants`,
4552
],

0 commit comments

Comments
 (0)