knowledge/scripts/validate_schema.sh

6 lines
145 B
Bash
Raw Normal View History

2024-03-08 21:32:08 +00:00
#!/bin/bash
mdq -c file.path --noheader . | while IFS= read -r md; do
2024-03-17 17:05:36 +00:00
mdlint --ignore-missing-frontmatter "schema.json" "$md" ||exit 1
2024-03-08 21:32:08 +00:00
done