knowledge/scripts/validate_schema.sh

6 lines
136 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
mdlint --ignore-missing-frontmatter "schema.json" "$md"
done