Socket
Socket
Sign inDemoInstall

markdown-it

Package Overview
Dependencies
Maintainers
1
Versions
79
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

markdown-it - npm Package Compare versions

Comparing version 12.0.1 to 12.0.2

6

CHANGELOG.md

@@ -9,2 +9,7 @@ # Changelog

## [12.0.2] - 2020-10-23
### Fixed
- Three pipes (`|\n|\n|`) are no longer rendered as a table with no columns, #724.
## [12.0.1] - 2020-10-19

@@ -533,2 +538,3 @@ ### Fixed

[12.0.2]: https://github.com/markdown-it/markdown-it/compare/12.0.1...12.0.2
[12.0.1]: https://github.com/markdown-it/markdown-it/compare/12.0.0...12.0.1

@@ -535,0 +541,0 @@ [12.0.0]: https://github.com/markdown-it/markdown-it/compare/11.0.1...12.0.0

2

lib/rules_block/table.js

@@ -121,3 +121,3 @@ // GFM table, https://github.github.com/gfm/#tables-extension-

columnCount = columns.length;
if (columnCount !== aligns.length) { return false; }
if (columnCount === 0 || columnCount !== aligns.length) { return false; }

@@ -124,0 +124,0 @@ if (silent) { return true; }

{
"name": "markdown-it",
"version": "12.0.1",
"version": "12.0.2",
"description": "Markdown-it - modern pluggable markdown parser.",

@@ -5,0 +5,0 @@ "keywords": [

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

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