Jekyllで特定の拡張子のファイルを出力しない方法。

_config.yml内に,exclude:[]に,"*.拡張子"を入れる。

たとえば,affinity designerの元データはbuildしたくない場合には,下記の様になる。

exclude:
   - Gemfile
   - Gemfile.lock
   - node_modules
   - vendor/bundle/
   - vendor/cache/
   - vendor/gems/
   - vendor/ruby/
   - "*.afdesign"

excludeは,追記されるのではなく,上書きされる。 そのため,_config.ymlにあるものを省略してはならない。