Search code examples
gulpmarkdownnunjucksyaml-front-matter

Gulp Front Matter +Markdown through Nunjucks


I'm working on adding some simple Markdown processing to my Gulp process, but I can't quite get the pieces to work together. I seem to be missing the step between getting the front matter content, and determining which Nunjuck template to apply.

Here's the section in my Gulp file:

gulp.task('pages:md', function() {
  gulp.src('./content/**/*.md')
    .pipe(frontMatter({ // optional configuration
      property: 'frontMatter', // property added to file object
      remove: true // should we remove front-matter header?
    }))
    .pipe(marked({
        // optional : marked options
    }))
    .pipe(nunjucks({
      // ?? Feels like I need to specify which template applies based on the front matter "layout" property?
    }))
    .pipe(gulp.dest('build/'))
});

The markdown file looks like this:

---
title: Title
layout: layout.html
nav_active: home
---

...markdown content...

I feel like it's going the right direction but being able to visualise where that front matter data has gone, and how to expose it to the Nunjucks rendering, is not clear. Any help?


Solution

  • You need gulp-wrap and original nunjucks.

    gulp-nunjucks is a tool for compiling the stream of nunjucks templates, but what you need to do is to wrap your contents in a nunjucks template and that is what gulp-wrap is for.

    Try npm install gulp-wrap nunjucks in addition to other settings and then the following should work.

    gulpfile

    var gulp = require('gulp')
    var wrap = require('gulp-wrap')
    var frontMatter = require('gulp-front-matter')
    var marked = require('gulp-marked')
    
    var fs = require('fs')
    
    gulp.task('pages:md', function() {
      gulp.src('./content/**/*.md')
        .pipe(frontMatter())
        .pipe(marked())
        .pipe(wrap(function (data) {
          return fs.readFileSync('path/to/layout/' + data.file.frontMatter.layout).toString()
        }, null, {engine: 'nunjucks'}))
        .pipe(gulp.dest('build/'))
    });
    

    markdown

    ---
    title: Title
    layout: layout.nunjucks
    nav_active: home
    ---
    
    ...markdown content...
    

    layout.nunjucks

    <h1>{{ file.frontMatter.title }}</h1>
    
    <p>{{ contents }}</p>