From aae05ff0bf5d625776aee75248aa26009f7840c3 Mon Sep 17 00:00:00 2001 From: mjbudd77 Date: Wed, 16 Dec 2020 23:02:51 -0500 Subject: [PATCH] Added a wildcard pattern to force jekyll to include _*.js and _*.json files. --- _config.yml | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/_config.yml b/_config.yml index a624af3e..01659313 100644 --- a/_config.yml +++ b/_config.yml @@ -41,10 +41,5 @@ exclude: - vc/upx.exe - vc/zip.exe -include: - - web/help/_translations.js - - web/help/_keywords.json - - web/help/_toc.json - - web/help/taseditor/_translations.js - - web/help/taseditor/_keywords.json - - web/help/taseditor/_toc.json +# Include all .js and .json files that start with an '_' +include: [ "_*.js", "_*.json" ]