Skip to content

Instantly share code, notes, and snippets.

@bjornbjorn
Created October 1, 2012 14:00
Show Gist options
  • Save bjornbjorn/3811948 to your computer and use it in GitHub Desktop.
Save bjornbjorn/3811948 to your computer and use it in GitHub Desktop.
Norwegian URL titles conversion array
/**
* Make sure url-titles look good for non-english entries also
*/
public function on_foreign_character_conversion_array()
{
return array(
'216' => 'o', // ø
'248' => 'o', // Ø
'198' => 'a', // æ
'230' => 'a', // Æ
'187' => 'a', // å
'229' => 'a', // Å
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment