valkey-io / valkey-doc

Other
17 stars 25 forks source link

Cleanup: Delete frontmatter keys 'aliases' and 'weight' #118

Closed zuiderkwast closed 2 weeks ago

zuiderkwast commented 1 month ago

I've cleared with @stockholmux that these frontmatter metadata keys are not useful to keep. They are leftovers from Redis website toolchain.

Deleted using

cd topics
perl -i -ne '$on = 1 if !$on && /^aliases: *\[/; print if !$on; $on = 0 if $on && /^ *\]/' *.md
perl -i -ne '$on = 0 if $on && !/^ /; $on = 1 if !$on && /^aliases:/; print if !$on' *.md
perl -i -ne 'print unless /^weight: *\d+/' *.md