Licence
Apache-2.0
Version
0.8.3
Deps
1
Size
52 kB
Vulns
0
Weekly
0
posthtml-transform-miniprogram
利用 posthtml 转换到对应的小程序
Usage
target 可选参数:swan,aliapp(my)
const posthtml = require('posthtml');
const transform = require('posthtml-transform-miniprogram');
posthtml()
.use(
transform({
source: 'wx', // default
target: 'swan' // default
})
)
.process(received, {
closingSingleTag: 'slash'
})
.then(result => result.html);