Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/maxcnunes/remove-reactid-attributes

Clean up HTML from a generated page with React
https://github.com/maxcnunes/remove-reactid-attributes

Last synced: about 1 month ago
JSON representation

Clean up HTML from a generated page with React

Awesome Lists containing this project

README

        

# remove-reactid-attributes

A simple regex to remove `reactid` attributes.

```js
var REGEX_REMOVE_IDS = /\s?data-reactid="[^"]+"/g;

'Any HTML generated with React'.replace(REGEX_REMOVE_IDS, '');
```

Available online at https://maxcnunes.github.io/remove-reactid-attributes.