0.0.1 • Published 5 years ago

octoparse2 v0.0.1

Weekly downloads
3
License
MIT
Repository
github
Last release
5 years ago

octoparse2

基于 rich-text 的跨平台富文本解析

如何使用

// index.wxml
<rich-text nodes="{{nodes}}"></rich-text>
// index.js
const octoparse = require('octoparse2');

let richText = `<p style="text-align:center;">Hello World!</p>`;
let html = octoparse.parse(richText);

this.setData({
  nodes: html
});

Tips: 记得使用 构建npm,不然加载不了 node_modules 目录下的文件 参考文档