bugfix: non-project files are compiled
lukewhrit opened this issue · 0 comments
lukewhrit commented
Currently, files such as a project's README.md
are attempted to be compiled. This is unwanted behavior as the project should only include specific directories, like posts
or pages
.
We have two options for solving this problem:
- Only compile files that are in
posts
andpages
by ignoring all other directories. (Preferred) - Ignore all files in the root directory besides
layout.html
.
I think I'll get to work on implementing the first solution.