Created
August 16, 2012 22:18
-
-
Save dragan/3374119 to your computer and use it in GitHub Desktop.
Mulder Ignore Sample
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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