2015-12-07 16:09:24 -05:00

14 lines
301 B
JavaScript

var File = require('vinyl');
/**
* This is a theme only used by documentation to test custom theme
* support.
*/
module.exports = function(comments, options, callback) {
return callback(null, [new File({
base: '/',
path: '/index.html',
contents: new Buffer('Hello world')
})]);
};