From 4f8958eb4b375b38d0ab6ffadf2da9b24395394d Mon Sep 17 00:00:00 2001 From: kbandla Date: Sun, 5 May 2024 12:48:10 -0400 Subject: [PATCH] Fix 608 Some github pages were not rendered properly. This was happening because github will not render files with reserved names. Solution is to add them to the config. A PR is useless because the commit needs to be on the master branch to work. Hence the direct push. --- docs/_config.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/_config.yml b/docs/_config.yml index fc24e7a6..00c3c22e 100644 --- a/docs/_config.yml +++ b/docs/_config.yml @@ -1 +1,2 @@ -theme: jekyll-theme-hacker \ No newline at end of file +theme: jekyll-theme-hacker +include: [ 'CONTRIBUTING.md', 'LICENSE.md' ]