# Should take any string, and replace all non-character letters with # dashes, and downcase everything. function xorg::normalize_filename ( String $name, ) >> String { $name.downcase().regsubst(/[^a-z0-9]/, '-') }