markdown-it-slack
Advanced tools
Comparing version 1.1.1 to 1.2.0
@@ -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_ |
{ | ||
"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
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
82709
13
115
2
+ Addedlodash@^4.17.5
+ Addedlodash@4.17.21(transitive)