knowledge/scripts/validate_schema.sh
2024-03-17 18:05:36 +01:00

5 lines
145 B
Bash
Executable file

#!/bin/bash
mdq -c file.path --noheader . | while IFS= read -r md; do
mdlint --ignore-missing-frontmatter "schema.json" "$md" ||exit 1
done