标签: sed
以下命令为我提供了我想要的输出:
$ sed '/^<template.*>/,/<\/template>/!d;//d' src/components/**/*.vue | html2jade
因为它将每个包含html的template处理为pug等效内容。
template
pug
现在有可能以某种方式替换所有这些文件中最初找到的html,现在用它 处理输出? template标记之外还有一些其他内容,应保持原样, 即一些script和style标签。
script
style