1.0.0 • Published 4 years ago

strip-dom-style-properties v1.0.0

Weekly downloads
2
License
MIT
Repository
github
Last release
4 years ago

strip-dom-style-properties

Strip HTML element style properties.

Installation

yarn add strip-dom-style-properties

Usage

import convert from 'strip-dom-style-properties';

convert(
  // HTML string.
  '<p style="color: #d3d3d3;"><span style="background-color: black; margin-right: 20px; color: #d3d3d3;">haha</span></p>',
  // CSS properties to be removed.
  ['color', 'margin-right'],
);
// Prints "<p style=""><span style="background-color: black;">haha</span></p>"