Skip to content

Commit

Permalink
Fix parsing complex style props (gatsbyjs#172)
Browse files Browse the repository at this point in the history
Use fork of html-to-jsx
  • Loading branch information
danielberndt authored and ChristopherBiscardi committed Jun 27, 2019
1 parent 84a0e2b commit 837a2b0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/gatsby-plugin-mdx/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"escape-string-regexp": "^1.0.5",
"fs-extra": "^7.0.0",
"gray-matter": "^4.0.1",
"htmltojsx": "^0.3.0",
"@danielberndt/htmltojsx": "0.3.4",
"lodash": "^4.17.10",
"mdast-util-to-string": "^1.0.4",
"mdast-util-toc": "^2.0.1",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const visit = require("unist-util-visit");
const _ = require("lodash");
const HTMLtoJSX = require("htmltojsx");
const HTMLtoJSX = require("@danielberndt/htmltojsx");
const map = require("unist-util-map");
const debug = require("debug")("get-source-plugins-as-remark-plugins");

Expand Down

0 comments on commit 837a2b0

Please sign in to comment.