wiki/fix in-context.sh
Pk11 8d9133f413 Update translations
Also remove Danish, German, Russian, and Chinese (Simplified) pages as none of them even have a single page that's 100% translated
2021-05-24 15:39:41 -05:00

8 lines
330 B
Bash
Executable File

#!/bin/bash
# Fix the layouts in the in-context files
sed -i "" "s/layout: crwdns[0-9][0-9][0-9][0-9][0-9]:0crwdne[0-9][0-9][0-9][0-9][0-9]:0/layout: default/" pages/_ic-IC/*.md
for file in pages/_ic-IC/*/*.md; do
sed -i "" "s/layout: crwdns[0-9][0-9][0-9][0-9][0-9]:0crwdne[0-9][0-9][0-9][0-9][0-9]:0/layout: wiki/" $file
done