2 个版本
0.1.1 | 2022 年 7 月 12 日 |
---|---|
0.1.0 | 2022 年 7 月 12 日 |
#1403 在 算法 中
14KB
154 行
htmlprops-to-react
将 HTML props 转换为有效的 React props
入门指南
此项目接受一个 HTML 字符串,并将属性替换为有效的 react.js 标记。当您使用查找和替换工具时,这非常有用,因为当您抓取内容并需要将其转换回代码库中的形式以进行搜索时。
extern crate htmlprops_to_react;
fn main(){
let html = r#"<img class="something">"#;
let react_html = convert_props_react(html.to_string());
println!("{react_html}");
// <img className="something">
}
此软件包仅处理将 property
键转换为 React 对应部分。它不会修改值,例如将 styles="width=300px"
转换为 style={{width: 300}}
。我们已在我们的 code_fix A11yWatch CLI 中处理了这种转换,并可能在以后将其作为功能添加。
依赖项
~10KB