Skip to content

Commit

Permalink
Move templates into src/templates.
Browse files Browse the repository at this point in the history
  • Loading branch information
gnab committed May 19, 2014
1 parent 005ec91 commit 599d7a2
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions make.js
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ function bundleResources (target) {
cat('src/remark.html'))
};

cat('src/resources.js.template')
cat('src/templates/resources.js.template')
.replace(/%(\w+)%/g, function (match, key) {
return resources[key];
})
Expand All @@ -108,7 +108,7 @@ function bundleHighlighter (target) {
}).join(',')
};

cat('src/highlighter.js.template')
cat('src/templates/highlighter.js.template')
.replace(/%(\w+)%/g, function (match, key) {
return resources[key];
})
Expand All @@ -123,7 +123,7 @@ function generateBoilerplateSingle(target) {
.replace('"</script>"', '"</" + "script>"'))
};

cat('src/boilerplate-single.html.template')
cat('src/templates/boilerplate-single.html.template')
.replace(/%(\w+)%/g, function (match, key) {
return resources[key];
})
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 599d7a2

Please sign in to comment.