Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

gatsby-remark-katex

Package Overview
Dependencies
Maintainers
2
Versions
338
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gatsby-remark-katex - npm Package Compare versions

Comparing version 1.0.13-0 to 1.0.13

20

index.js

@@ -1,7 +0,11 @@

const visit = require(`unist-util-visit`);
const katex = require(`katex`);
const remarkMath = require(`remark-math`);
"use strict";
module.exports = ({ markdownAST }) => {
visit(markdownAST, `inlineMath`, node => {
var visit = require(`unist-util-visit`);
var katex = require(`katex`);
var remarkMath = require(`remark-math`);
module.exports = function (_ref) {
var markdownAST = _ref.markdownAST;
visit(markdownAST, `inlineMath`, function (node) {
node.type = `html`;

@@ -13,3 +17,3 @@ node.value = katex.renderToString(node.value, {

visit(markdownAST, `math`, node => {
visit(markdownAST, `math`, function (node) {
node.type = `html`;

@@ -22,2 +26,4 @@ node.value = katex.renderToString(node.value, {

module.exports.setParserPlugins = () => [remarkMath];
module.exports.setParserPlugins = function () {
return [remarkMath];
};
{
"name": "gatsby-remark-katex",
"description": "Transform math nodes to html markup",
"version": "1.0.13-0",
"version": "1.0.13",
"author": "Jeffrey Xiao <jeffrey.xiao1998@gmail.com>",

@@ -10,3 +10,3 @@ "bugs": {

"dependencies": {
"@babel/runtime": "^7.0.0-beta.38",
"babel-runtime": "^6.26.0",
"katex": "^0.8.3",

@@ -28,6 +28,3 @@ "remark-math": "^1.0.3",

"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/gatsbyjs/gatsby.git"
},
"repository": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-remark-katex",
"scripts": {

@@ -34,0 +31,0 @@ "build": "babel src --out-dir . --ignore __tests__",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc