本文整理汇总了TypeScript中pug.renderFile函数的典型用法代码示例。如果您正苦于以下问题:TypeScript renderFile函数的具体用法?TypeScript renderFile怎么用?TypeScript renderFile使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了renderFile函数的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的TypeScript代码示例。
示例1: function
export default function (){
let codeexports = 'module.exports = ';
let html = pug.renderFile('./src/synopsis.pug');
// let html = pug.render("h1 FUCK YOU BITCH'! ");
html = html.replace(/'/g,"\\'").replace(/\s/g,' ');
return Promise.resolve({
code : codeexports+'\''+html+'\';'
, cacheable : false
})
}
开发者ID:hinell,项目名称:git-book,代码行数:10,代码来源:synopsis.ts
示例2:
}
{
/// pug.compileFileClient(path, ?options) https://pugjs.org/api/reference.html#pugcompilefileclientpath-options
clientFunctionString = pug.compileFileClient(path);
str = pug.compileFileClient(path);
}
{
/// pug.render(source, ?options, ?callback) https://pugjs.org/api/reference.html#pugrendersource-options-callback
str = pug.render(source);
// test type for callback paraments
pug.render(source, {}, (err, html) => {
let e: Error = err;
str = html;
});
}
{
/// pug.renderFile(path, ?options, ?callback) https://pugjs.org/api/reference.html#pugrenderfilepath-options-callback
str = pug.renderFile(path);
// test type for callback paraments
pug.renderFile(path, {}, (err, html) => {
let e: Error = err;
str = html;
});
}
}
开发者ID:rchaser53,项目名称:DefinitelyTyped,代码行数:30,代码来源:pug-tests.ts
示例3: minify
import fs from 'fs'
import path from 'path'
import { minify } from 'html-minifier'
import pug from 'pug'
const result = minify(pug.renderFile('server/template.pug'), {
collapseWhitespace: true,
minifyCSS: true,
minifyJS: true,
})
fs.writeFileSync(path.resolve(__dirname, '../dist/template.html'), result)
开发者ID:JounQin,项目名称:blog,代码行数:13,代码来源:template.ts
示例4: render
render(locals){
return jade.renderFile(this.options.filePath, locals)
}
开发者ID:AckerApple,项目名称:ack-node,代码行数:3,代码来源:templating.ts
注:本文中的pug.renderFile函数示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论