콘텐츠로 이동

frontmatter-hook

#!/usr/bin/env bash
# omc-frontmatter-check
file="$1"
[[ "$file" == wiki/* ]] || exit 0
head -1 "$file" | grep -q '^---$' || { echo "frontmatter 누락: $file" >&2; exit 1; }