Skip to content

Instantly share code, notes, and snippets.

@lukaville
Last active April 4, 2016 19:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lukaville/c7709e7553e16d8485c969d888232557 to your computer and use it in GitHub Desktop.
Save lukaville/c7709e7553e16d8485c969d888232557 to your computer and use it in GitHub Desktop.
vowel = "аеёиоуыэюя"
def about(value):
is_first_letter_vowel = value[:1] in vowel
prefix = "об" if is_first_letter_vowel else "о"
return prefix + " " + value
environment.filters['about'] = about
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment