I'm using metalsmith static site generators and building html/css files from jade/sass respectively.
When I compile I'm getting the following
- .scss files as .css files
- ._scss files are not generated as .css files, but I could include them in the .scss files. (Include sass files)
- .jade files as .html files
I'm happy with the way that Sass works. But when I keep some include files as .jade files, the include files are also created as .html files.
Eg:
-home.jade -include.jade
are converted to
-home.html -include.html
but I want only
-home.html
I do not want multiple html files in the build directory(include files should not be converted to html files).
Any help will be much appreciated.