Socket
Socket
Sign inDemoInstall

@toast-ui/editor-plugin-color-syntax

Package Overview
Dependencies
Maintainers
2
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@toast-ui/editor-plugin-color-syntax - npm Package Compare versions

Comparing version 3.0.3 to 3.1.0

10

dist/toastui-editor-plugin-color-syntax.js
/*!
* TOAST UI Editor : Color Syntax Plugin
* @version 3.0.3 | Thu Apr 14 2022
* @version 3.1.0 | Fri Aug 05 2022
* @author NHN Cloud FE Development Lab <dl_javascript@nhn.com>

@@ -178,2 +178,10 @@ * @license MIT

}
function removeProseMirrorHackNodes(html) {
var reProseMirrorImage = /<img class="ProseMirror-separator" alt="">/g;
var reProseMirrorTrailingBreak = / class="ProseMirror-trailingBreak"/g;
var resultHTML = html;
resultHTML = resultHTML.replace(reProseMirrorImage, '');
resultHTML = resultHTML.replace(reProseMirrorTrailingBreak, '');
return resultHTML;
}

@@ -180,0 +188,0 @@ ;// CONCATENATED MODULE: ./src/index.ts

2

package.json
{
"name": "@toast-ui/editor-plugin-color-syntax",
"version": "3.0.3",
"version": "3.1.0",
"description": "TOAST UI Editor : Color Syntax Plugin",

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

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