17 lines
353 B
Bash
Executable File
17 lines
353 B
Bash
Executable File
#!/bin/zsh
|
|
for file in **/*.md; do
|
|
echo "foo$file"
|
|
yq \
|
|
--front-matter="process" \
|
|
--inplace \
|
|
'
|
|
.tags = ["ttrpg/faction"] |
|
|
.icon = "users" |
|
|
.summary = .summary // "" |
|
|
.campaigns = ["[[Kingmaker|Kingmaker]]"] |
|
|
del(.type) |
|
|
del(.campaign)
|
|
' \
|
|
"${file}"
|
|
done
|