fis3-postpackager-html-replace

1.0.1 • Public • Published

fis-postpackager-html-replace

用于替换html内元素

功能

  • 自动将页面中声明的区域进行替换

用法

$ npm install -g fis3-postpackager-html-replace
$ vi path/project/fis-conf.js # 编辑项目配置文件
//file : path/project/fis-conf.js
fis.match('::package', {postpackager: fis.plugin('html-replace', {
  replace: true // 默认false, true 替换为替换内容, false 替换为原始内容
}, 'append')})
<body>
  <!-- @replace -->
    原始内容
  <!-- @replace.to -->
    替换内容
  <!-- @replace.end -->
</body>
  • true
<body>
    替换内容
</body>
  • false
<body>
    原始内容
</body>

Readme

Keywords

none

Package Sidebar

Install

npm i fis3-postpackager-html-replace

Weekly Downloads

1

Version

1.0.1

License

MIT

Last publish

Collaborators

  • clunt