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

yeast-markdown-parser

Package Overview
Dependencies
Maintainers
2
Versions
64
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

yeast-markdown-parser - npm Package Compare versions

Comparing version 1.2.0-DEVENGAGE-2383-typeerror-in-custom-component.462 to 1.2.0-DEVENGAGE-2383-typeerror-in-custom-component.463

3

dist/index.js

@@ -652,2 +652,3 @@ import { YeastBlockNodeTypes, YeastNodeFactory, ContentGroupType, isYeastNodeType, YeastParser } from 'yeast-core';

allowBooleanAttributes: true,
parseTagValue: false,
preserveOrder: true,

@@ -711,3 +712,3 @@ isArray: () => {

else if (keyExists(keys, '#text')) {
parentNode.children = parser.parseBlock(String(child['#text']));
parentNode.children = parser.parseBlock(child['#text']);
}

@@ -714,0 +715,0 @@ }

{
"name": "yeast-markdown-parser",
"version": "1.2.0-DEVENGAGE-2383-typeerror-in-custom-component.462",
"version": "1.2.0-DEVENGAGE-2383-typeerror-in-custom-component.463",
"description": "Parses markdown to yeAST (Yuri's Empathetic Arbitrary Syntax Tree) documents",

@@ -5,0 +5,0 @@ "exports": {

@@ -6,4 +6,4 @@ <yeast:link href="/path/to/page" title="Opens the Display Text page" forceNewTab="false"> <yeast:strikethrough>link</yeast:strikethrough> </yeast:link>

<yeast:tablecell>1</yeast:tablecell>
<yeast:tablecell>2</yeast:tablecell>
<yeast:tablecell>3</yeast:tablecell>
<yeast:tablecell>true</yeast:tablecell>
<yeast:tablecell>3.0</yeast:tablecell>
</yeast:tablerow>

@@ -10,0 +10,0 @@ <yeast:tablerow>

@@ -15,2 +15,3 @@ import { BlockParserPlugin, YeastParser, BlockParserPluginResult, YeastNode } from 'yeast-core';

allowBooleanAttributes: true,
parseTagValue: false,
preserveOrder: true,

@@ -97,3 +98,3 @@ isArray: () => {

} else if (keyExists(keys, '#text')) {
parentNode.children = parser.parseBlock(String(child['#text'])); //make sure text node is passed as string
parentNode.children = parser.parseBlock(child['#text']);
}

@@ -100,0 +101,0 @@ }

Sorry, the diff of this file is not supported yet

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