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

micromark-extension-gfm-table

Package Overview
Dependencies
Maintainers
1
Versions
18
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

micromark-extension-gfm-table - npm Package Compare versions

Comparing version 0.2.0 to 0.2.1

2

package.json
{
"name": "micromark-extension-gfm-table",
"version": "0.2.0",
"version": "0.2.1",
"description": "micromark extension to support GFM tables",

@@ -5,0 +5,0 @@ "license": "MIT",

@@ -194,3 +194,3 @@ exports.flow = {

// EOF, whitespace, pipe
if (code === null || code < 5 || code === 32 || code === 124) {
if (code === null || code < 0 || code === 32 || code === 124) {
effects.exit('temporaryTableCellContent')

@@ -455,3 +455,3 @@ return cellBreakHead(code)

// EOF, whitespace, pipe
if (code === null || code < 5 || code === 32 || code === 124) {
if (code === null || code < 0 || code === 32 || code === 124) {
effects.exit('temporaryTableCellContent')

@@ -458,0 +458,0 @@ return cellBreakBody(code)

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