Skip to content

Instantly share code, notes, and snippets.

@dragan
Created August 16, 2012 22:18
Show Gist options
  • Save dragan/3374119 to your computer and use it in GitHub Desktop.
Save dragan/3374119 to your computer and use it in GitHub Desktop.
Mulder Ignore Sample
// If you have an item named about.html this, is how you would ignore it
Compile("/about/", (context) => {
// Don't filter this item
});
// If you have a folder named about, this is how you would ignore it
Compile("/about/*", (context) => {
// Don't filter this item
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment