在html2jade选项中设置noemptypipe为true,程序化用法

时间:2015-09-14 12:43:22

标签: html node.js pug

我在程序化使用中使用html2jade,我想将noemptypipe选项设置为true。

到目前为止,我已经尝试了

html2jade.convertHtml(html, {
    noemptypipe: true
}, function(err, jade) {
    if (err) throw err;
    console.log(jade);
});

html2jade.convertHtml(html, {
    noEmptyPipe: true
}, function(err, jade) {
    if (err) throw err;
    console.log(jade);
});

html2jade.convertHtml(html, {
    writer: {
        noEmptyPipe: true
    }
}, function(err, jade) {
    if (err) throw err;
    console.log(jade);
});

html2jade.convertHtml(html, {
    writer: {
        noemptypipe: true
    }
}, function(err, jade) {
    if (err) throw err;
    console.log(jade);
});

但它们都不起作用。我无法找到任何关于如何在任何地方执行此操作的文档,但我无法弄清楚其中发生了什么。 code

1 个答案:

答案 0 :(得分:0)

原来这个工作正常,

html2jade.convertHtml(html, {
    noemptypipe: true
}, function(err, jade) {
    if (err) throw err;
    console.log(jade);
});

我一定是拼错了noemptypipe。