Skip to content

Processing subfolder/*.{html, njk, tmpl.js} #361

Answered by oscarotero
DrSensor asked this question in Q&A
Discussion options

You must be logged in to vote

You can process all pages with * and use a condition to apply the processor to certain pages only. For example:

site.process("*", (page) => {
  if (page.src.path.startsWith("/subfolder/") && page.src.ext === ".njk") {
    runMyProcessor(page);
  }
});

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by DrSensor
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants