knowledge/scripts/validate_schema.sh
2024-03-08 22:32:08 +01:00

5 lines
136 B
Bash
Executable file

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