mirror of
https://github.com/JuanCanham/HackMyResume.git
synced 2024-11-25 01:40:10 +00:00
Recruit Markdown partials when present.
This commit is contained in:
parent
542776fd2e
commit
7814786957
@ -60,7 +60,7 @@ Definition of the HandlebarsGenerator class.
|
|||||||
|
|
||||||
|
|
||||||
function registerPartials(format, theme) {
|
function registerPartials(format, theme) {
|
||||||
if( format === 'html' || format === 'doc' ) {
|
if( format === 'html' || format === 'doc' || format == 'md' ) {
|
||||||
|
|
||||||
// Locate the global partials folder
|
// Locate the global partials folder
|
||||||
var partialsFolder = PATH.join(
|
var partialsFolder = PATH.join(
|
||||||
@ -74,7 +74,7 @@ Definition of the HandlebarsGenerator class.
|
|||||||
_.each( READFILES( partialsFolder, function(error){ }), function( el ) {
|
_.each( READFILES( partialsFolder, function(error){ }), function( el ) {
|
||||||
var pathInfo = parsePath( el );
|
var pathInfo = parsePath( el );
|
||||||
var name = SLASH( PATH.relative( partialsFolder, el )
|
var name = SLASH( PATH.relative( partialsFolder, el )
|
||||||
.replace(/\.html$|\.xml$/, '') );
|
.replace(/\.(?:html|xml|hbs|md|txt)$/i, '') );
|
||||||
var tplData = FS.readFileSync( el, 'utf8' );
|
var tplData = FS.readFileSync( el, 'utf8' );
|
||||||
var compiledTemplate = HANDLEBARS.compile( tplData );
|
var compiledTemplate = HANDLEBARS.compile( tplData );
|
||||||
HANDLEBARS.registerPartial( name, compiledTemplate );
|
HANDLEBARS.registerPartial( name, compiledTemplate );
|
||||||
|
Loading…
Reference in New Issue
Block a user