lanan-repair-app/node_modules/rich-text-parser
2024-10-09 13:34:36 +08:00
..
lib first commit 2024-10-09 13:34:36 +08:00
src first commit 2024-10-09 13:34:36 +08:00
.npmignore first commit 2024-10-09 13:34:36 +08:00
package.json first commit 2024-10-09 13:34:36 +08:00
README.md first commit 2024-10-09 13:34:36 +08:00

在项目中使用该rich-text-parser

安装

$ npm i rich-text-parser -S --production

使用

  <rich-text nodes="{{nodes}}"></rich-text>
  import parser from 'rich-text-parser'

  parser.definedCustomTag({figure: 'p', figcaption: ''})
  const nodes = parser.getRichTextJson(html)

Api

参数 说明 参数 参数类型 返回值类型
getRichTextJson 解析html html String Object
definedCustomTag 定义需要解析的特殊标签value不填默认是div options Object -