Socket
Socket
Sign inDemoInstall

markdown-it-slack

Package Overview
Dependencies
Maintainers
6
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

markdown-it-slack - npm Package Compare versions

Comparing version 1.1.1 to 1.2.0

src/codeBlockPlugin.js

7

CHANGELOG.md

@@ -0,2 +1,7 @@

# Changelog
*v1.2.0*
_Feat: add support to Slack's markdown flavor of code block's_
*v1.1.1*
_Internal: Add CHANGELOG and update README_
_Internal: Add CHANGELOG and update README_

9

package.json
{
"name": "markdown-it-slack",
"version": "1.1.1",
"description": "Renders *bold* to <strong>bold</strong>",
"version": "1.2.0",
"description": "Renders *bold* to <strong>bold</strong> and other idiosyncrasies",
"main": "src/index.js",
"scripts": {
"lint": "eslint *.js **/*.js",
"lint": "eslint --ignore-path .gitignore .",
"pretest": "npm run lint",

@@ -21,3 +21,3 @@ "test": "NODE_ENV=test mocha $(find test -name '*.spec.js')",

"commonmark",
"markdown-bold",
"markdown-bold",
"markdown-emoji"

@@ -38,4 +38,5 @@ ],

"dependencies": {
"lodash": "^4.17.5",
"markdown-it-emoji": "^1.4.0"
}
}

@@ -5,2 +5,3 @@ 'use strict'

const strongPlugin = require('./strongPlugin.js')
const codeBlockPlugin = require('./codeBlockPlugin.js')

@@ -10,4 +11,5 @@ const combinedPlugin = (md, emojiOptions) => {

md.use(strongPlugin)
md.use(codeBlockPlugin)
}
module.exports = combinedPlugin

Sorry, the diff of this file is not supported yet

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