jin-yufeng / mp-html

小程序富文本组件,支持渲染和编辑 html,支持在微信、QQ、百度、支付宝、头条和 uni-app 平台使用

Home Page:https://jin-yufeng.gitee.io/mp-html

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

如何扩展支持 ad-custom 原生广告标签

ren2436 opened this issue · comments

新功能描述

广告标签不止只有 ad,还有 ad-custom,怎么扩展支持下 ad-custom 标签

应用场景

新版增加了 customElements 配置项,按以下方式就可以支持 adad-custom,具体参考 文档

{
  customElements: [{
    name: 'ad',
    attrs: ['unit-id']
  }, {
    name: 'ad-custom',
    attrs: ['unit-id'],
    platforms: ['mp-weixin']
  }]
}