Add support for LaTeX using KaTeX

This commit is contained in:
1Computer1
2019-10-01 16:20:49 -04:00
parent a33c362701
commit 1054749621
4 changed files with 58 additions and 10 deletions
+9 -1
View File
@@ -31,7 +31,15 @@ module.exports = {
{
resolve: `gatsby-transformer-remark`,
options: {
plugins: [`gatsby-remark-auto-headers`],
plugins: [
`gatsby-remark-auto-headers`,
{
resolve: `gatsby-remark-katex`,
options: {
strict: `ignore`,
},
},
],
},
},
{