mirror of
https://github.com/rvtr/wiki.git
synced 2025-06-18 19:15:35 -04:00

Also remove Danish, German, Russian, and Chinese (Simplified) pages as none of them even have a single page that's 100% translated
8 lines
330 B
Bash
Executable File
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
|