Skip to content
This repository has been archived by the owner on Mar 4, 2024. It is now read-only.

v2.0.0

Latest
Compare
Choose a tag to compare
@Calyhre Calyhre released this 22 Nov 11:51
· 31 commits to master since this release
567ee48
  • Remove duplication of internal remark-abbr code
  • We are now allowint options to be passed, see remark-abbr for available options:
    {
      resolve: `gatsby-transformer-remark`,
      options: {
        commonmark: true,
        footnotes: true,
        pedantic: true,
        gfm: true,
        plugins: [
-         "gatsby-remark-abbr"
+         { 
+          resolve: "gatsby-remark-abbr",
+           options: { expandFirst: true },
+         }
        ],
      },
    }