quickly convert html props into valid react props
This project takes a html string and replaces the properties with the valid react.js markup.
This helps when using find and replace tools since when you scrape content giving raw html and need a way to convert it back to the form it would be in a codebase to search.
toml
[dependencies]
html_to_react = "0.3.0"
```rust extern crate htmltoreact;
use htmltoreact::convertpropsreact;
fn main(){
let html = r#""#;
let reacthtml = convertpropsreact(html.tostring());
println!("{}", react_html);
// <img className="something" htmlFor="mystuff" tabIndex="2" style={{color: white, backgroundColor: black}}>
} ```