We Rich Save

HTML转微信富文本节点, we just need rich, no text.

Project README

We Rich

Parse HTML into Weapp rich-text Nodes

HTML转小程序 rich-text 控件节点

npm

Usage

Node

npm install we-rich

const weRich = require('we-rich');
var nodes = weRich.parse(html);

例子 Input/Output

<div class='post post-featured'>
  <p>hello</p>
  <section>world</section>
  <img src="test.png" style="max-width:100%" />
</div>
[
  {
    "type": "node",
    "name": "div",
    "attrs": {"class": "post post-featured"},
    "children": [
      {
        "type": "node",
        "name": "p",
        "attrs": {},
        "children": [{"type": "text", "text": "hello"} ]
      },
      {
        "type": "node",
        "name": "div",
        "attrs": {},
        "children": [{"type": "text", "text": "world"}
        ]
      },
      {
        "type": "node",
        "name": "img",
        "attrs": {"src": "test.png", "style": "max-width:100%"},
        "children": []
      }
    ]
  }
]

功能

HTML into 微信小程序rich-text使用的nodes

安装

npm install we-rich --save
const weRich = require('we-rich');
var nodes = weRich.parse(html);

此项目基于 himalaya

Open Source Agenda is not affiliated with "We Rich" Project. README Source: tans/we-rich
Stars
36
Open Issues
2
Last Commit
6 years ago
Repository
License
ISC

Open Source Agenda Badge

Open Source Agenda Rating