yeast-markdown-parser
Advanced tools
Comparing version 1.2.0-DEVENGAGE-2383-typeerror-in-custom-component.462 to 1.2.0-DEVENGAGE-2383-typeerror-in-custom-component.463
@@ -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
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
160479
3094