Socket
Socket
Sign inDemoInstall

@deskeen/markdown

Package Overview
Dependencies
0
Maintainers
1
Versions
20
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 5.1.2 to 5.1.3

7

CHANGELOG.md
# Changelog
## 5.1.2 - 2021-05-04
## 5.1.3 - 2021-06-06
**🐛 Bugfix**
- An empty text is added when a footnote is missing.
## 5.1.2 - 2021-06-04
**🐛 Bugfix**
- A paragraph can contain brackets before a link.

@@ -7,0 +12,0 @@

2

package.json
{
"name": "@deskeen/markdown",
"version": "5.1.2",
"version": "5.1.3",
"description": "Node.js Markdown to HTML Parser",

@@ -5,0 +5,0 @@ "author": "Morgan Schmiedt",

@@ -736,2 +736,5 @@ 'use strict'

for (const ref of fnIdList.keys()) {
const itemNode = document.createElement('li')
itemNode.id = `reference${refNb}`
const refValue = fnNote[ref]

@@ -753,5 +756,2 @@

const itemNode = document.createElement('li')
itemNode.id = `reference${refNb}`
// childNodes is theoretically a live NodeList

@@ -761,6 +761,6 @@ for (const node of Array.from(contentNode.childNodes)) {

}
}
listNode.appendChild(itemNode)
refNb += 1
}
listNode.appendChild(itemNode)
refNb += 1
}

@@ -767,0 +767,0 @@

@@ -188,2 +188,3 @@ 'use strict'

<li id="reference1">ref one</li>
<li id="reference2"></li>
</ol>

@@ -190,0 +191,0 @@ </section>`

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc