5 lines
145 B
Bash
Executable file
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
|