は、ご使用のケースで誤ったgulpプラグインです。
あなたがデータでいっぱいにしたいテンプレートの流れを持っている場合は、gulp-jade
を使用します。
gulp.src('*.jade')
.pipe(...)
.pipe(jade({title:'Some title', text:'Some text'}))
あなたはテンプレートでレンダリングするデータのストリームを持っている場合は、gulp-wrap
を使用:
gulp.src('*.md')
.pipe(...)
.pipe(wrap({src:'path/to/my/template.jade'})
あなたの場合は、以来、もう少し難しいです.md
ファイルごとに異なる.jade
テンプレートが必要です。幸いにもgulp-wrap
は、ストリーム内の各ファイルに対して別のテンプレートを返すことができる機能を受け入れ:
var gulp = require('gulp');
var md = require('gulp-markdown-to-json');
var jade = require('jade');
var wrap = require('gulp-wrap');
var plumber = require('gulp-plumber');
var rename = require('gulp-rename');
var fs = require('fs');
gulp.task('docs', function() {
return gulp.src('./src/docs/pages/*.md')
.pipe(plumber()) // this just ensures that errors are logged
.pipe(md({ pedantic: true, smartypants: true }))
.pipe(wrap(function(data) {
// read correct jade template from disk
var template = 'src/docs/templates/' + data.contents.template;
return fs.readFileSync(template).toString();
}, {}, { engine: 'jade' }))
.pipe(rename({extname:'.html'}))
.pipe(gulp.dest('./dist/docs'));
});
のsrc /ドキュメント/ページ/
---
template: index.jade
title: Europa
---
This is a test.
のsrc /ドキュメント/テンプレート/ test.md index.jade
doctype html
html(lang="en")
head
title=contents.title
body
h1=contents.title
div !{contents.body}
DIST /ドキュメント/ test.htmlという
<!DOCTYPE html><html lang="en"><head><title>Europa</title></head><body><h1>Europa</h1><div><p>This is a test. </p></div></body></html>
あなたは素晴らしいです!私はギャルを愛し始めています...私はジキルからミドルマン、ギャツビー、メタルミスに移行しました。私はこれらのツールのどれも必要としないことに気づきました。 –
玉の中に広がっていると不平を言っています: "ファイル名"オプションは "相対"パス、> 1 |を使用する必要があります。 _layout –
は決して分かりません。 –