`_` がついたフォルダを build に含ませたい時にやること
こんにちは、 UNIBA の MJ です。今日は 静的サイトジェネレーターの Middleman
について少し tips
Middleman の ビルドファイル
Middleman
は予め一定のルールでビルド時に余分なファイルをビルドしないようになっています。
例えば layouts
フォルダだったり, _
がついたフォルダだったり .
が先頭についた隠しファイルだったりします。
これらは非常に便利な機能でもある一方、特殊な条件においては邪魔になったりします。
この設定は、記事を書いたあたりでは ここに 記述されています。
# Files starting with an underscore, but not a double-underscore
partials: proc do |file|
ignored = false
file[:relative_path].ascend do |f|
if f.basename.to_s =~ %r{^_[^_]}
ignored = true
break
end
end
ignored
end,
layout: proc do |file, app|
file[:relative_path].to_s.start_with?('layout.', app.config[:layouts_dir] + '/')
end
.
ファイルに関する記述は別にあるんでしょうかね?
さておいて、これを config.rb
で以下で上書きすればおkです。
config.ignored_sitemap_matchers[:partials] = proc { |file|
ignored = false
file[:relative_path].ascend do |f|
if f.to_s.start_with?("/_folder/")
ignored = false
break
elsif f.basename.to_s =~ %r{^_[^_]}
ignored = true
break
end
end
ignored
}
これで build
フォルダに _folder
が追加されているはずでしょう。
Author And Source
この問題について(`_` がついたフォルダを build に含ませたい時にやること), 我々は、より多くの情報をここで見つけました https://qiita.com/monpy/items/d30ef0158b8c92486ed7著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .