示例#1
0
文件: detect.go 项目: heyLu/qst
func jekyll(file string) bool {
	return hasFile(file, "_config.yml") || fileutil.IsDir(fileutil.Join(file, "_posts"))
}
示例#2
0
文件: detect.go 项目: heyLu/qst
func hasFile(fileOrDir string, file string) bool {
	return fileutil.IsFile(fileutil.Join(fileOrDir, file))
}