文件名称:html-to-preact-h:将 HTML 字符串转换为 preact hyperscript h() 调用的字符串
文件大小:23KB
文件格式:ZIP
更新时间:2024-08-12 23:34:14
react preact hyperscript JavaScript
html-to-preact-h 生成的字符串 hyperscript h()为给定HTML字符串的函数调用。 旨在更轻松地将标记片段(特别是生成的 SVG 文件)嵌入到使用h()呈现标记(而不是 JSX)的 JavaScript 源代码列表中。 安装 npm install html-to-preact-h 应用程序接口 const htmlToPreactH = require ( 'html-to-preact-h' ) const result = htmlToPreactH ( 'Great example!' ) console . log ( result ) 将打印: h('a', {href: 'https://example.com'}, 'Great example!') 它处理诸如嵌套之
【文件预览】:
html-to-preact-h-master
----index.js(2KB)
----package.json(653B)
----blah.js(1KB)
----package-lock.json(66KB)
----index.test.js(6KB)
----.gitignore(14B)
----README.md(792B)
----cli.js(381B)