frontmatter-hook
Example — frontmatter 강제 훅
섹션 제목: “Example — frontmatter 강제 훅”#!/usr/bin/env bash# omc-frontmatter-checkfile="$1"[[ "$file" == wiki/* ]] || exit 0head -1 "$file" | grep -q '^---$' || { echo "frontmatter 누락: $file" >&2; exit 1; }