htmltowxml

1.0.4 • Public • Published

html2wxml

enter image description here

convert html to wxml
html转换成wxml适配微信小程序

install

npm install htmltowxml --save

Usage

import {html2wxml} from 'htmltowxml';
const wxml = html2wxml('<div>I am<div>I am<div>I am test</div> test</div> test</div>');
console.log(wxml);
/*<view class="div">
  <text>I am</text>
  <view class="div">
    <text>I am</text>
    <view class="div">
      <text>I am test</text>
    </view>
    <text>test</text>
  </view>
  <text>test</text>
</view>
*/

test

npm i

npm test

License

MIT

Readme

Keywords

Package Sidebar

Install

npm i htmltowxml

Weekly Downloads

3

Version

1.0.4

License

MIT

Last publish

Collaborators

  • best-components