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