Skip to content

Instantly share code, notes, and snippets.

@xiaokaike
Last active October 25, 2016 13:27
Show Gist options
  • Save xiaokaike/9bf9b3fcf50ce32d33ec6555bd9e2f48 to your computer and use it in GitHub Desktop.
Save xiaokaike/9bf9b3fcf50ce32d33ec6555bd9e2f48 to your computer and use it in GitHub Desktop.
fis-remove-html-comments
// 去除.tpl 中的注释
var removeComments = require('./fis-remove-html-comments.js');
fis.config.set('modules.parser.tpl', [removeComments]);
function removeComments(content){
return content.replace(/<!--(?!\[)([\s\S]*?)(-->|$)/g, '');
}
module.exports = removeComments;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment