class Jekyll::FrontmatterDefaults

def applies_path?(scope, path)

def applies_path?(scope, path)
  rel_scope_path = scope["path"]
  return true if !rel_scope_path.is_a?(String) || rel_scope_path.empty?
  sanitized_path = sanitize_path(path)
  if rel_scope_path.include?("*")
    glob_scope(sanitized_path, rel_scope_path)
  else
    path_is_subpath?(sanitized_path, strip_collections_dir(rel_scope_path))
  end
end