Socket
Socket
Sign inDemoInstall

markdown-it-attrs

Package Overview
Dependencies
6
Maintainers
1
Versions
59
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 4.0.0 to 4.1.0

.nyc_output/ce067ac8-04f1-4f53-9ed6-6512c6949ece.json

2

.nyc_output/processinfo/index.json

@@ -1,1 +0,1 @@

{"processes":{"6ac99b78-add1-4cd8-b0f7-5c9698755b00":{"parent":null,"children":[]}},"files":{"/Users/arve/git/markdown-it-attrs/index.js":["6ac99b78-add1-4cd8-b0f7-5c9698755b00"],"/Users/arve/git/markdown-it-attrs/patterns.js":["6ac99b78-add1-4cd8-b0f7-5c9698755b00"],"/Users/arve/git/markdown-it-attrs/utils.js":["6ac99b78-add1-4cd8-b0f7-5c9698755b00"]},"externalIds":{}}
{"processes":{"ce067ac8-04f1-4f53-9ed6-6512c6949ece":{"parent":null,"children":[]}},"files":{"/Users/arve/git/markdown-it-attrs/index.js":["ce067ac8-04f1-4f53-9ed6-6512c6949ece"],"/Users/arve/git/markdown-it-attrs/patterns.js":["ce067ac8-04f1-4f53-9ed6-6512c6949ece"],"/Users/arve/git/markdown-it-attrs/utils.js":["ce067ac8-04f1-4f53-9ed6-6512c6949ece"]},"externalIds":{}}

@@ -537,3 +537,3 @@ (function(f){if(typeof exports==="object"&&typeof module!=="undefined"){module.exports=f()}else if(typeof define==="function"&&define.amd){define([],f)}else{var g;if(typeof window!=="undefined"){g=window}else if(typeof global!=="undefined"){g=global}else if(typeof self!=="undefined"){g=self}else{g=this}g.markdownItAttrs = f()}})(function(){var define,module,exports;return (function(){function r(e,n,t){function o(i,f){if(!n[i]){if(!e[i]){var c="function"==typeof require&&require;if(!f&&c)return c(i,!0);if(u)return u(i,!0);var a=new Error("Cannot find module '"+i+"'");throw a.code="MODULE_NOT_FOUND",a}var p=n[i]={exports:{}};e[i][0].call(p.exports,function(r){var n=e[i][1][r];return o(n||r)},p,p.exports,r,e,n,t)}return n[i].exports}for(var u="function"==typeof require&&require,i=0;i<t.length;i++)o(t[i]);return o}return r})()({1:[function(require,module,exports){

type: function type(t) {
return t !== 'code_inline';
return t !== 'code_inline' && t !== 'math_inline';
}

@@ -540,0 +540,0 @@ }]

{
"name": "markdown-it-attrs",
"version": "4.0.0",
"version": "4.1.0",
"description": "Add classes, identifiers and attributes to your markdown with {} curly brackets, similar to pandoc's header attributes",

@@ -48,2 +48,3 @@ "main": "index.js",

"markdown-it-implicit-figures": "^0.9.0",
"markdown-it-katex": "^2.0.3",
"mocha": "^7.1.1",

@@ -50,0 +51,0 @@ "nyc": "^14.1.1"

@@ -316,3 +316,3 @@ 'use strict';

content: utils.hasDelimiters('end', options),
type: (t) => t !== 'code_inline'
type: (t) => t !== 'code_inline' && t !== 'math_inline'
}

@@ -319,0 +319,0 @@ ]

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc