Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@mfd
Last active November 16, 2016 18: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 mfd/5ff0faf0785522ef11ffcb33c518c266 to your computer and use it in GitHub Desktop.
Save mfd/5ff0faf0785522ef11ffcb33c518c266 to your computer and use it in GitHub Desktop.
convert cyrillic to english (for id's, url's)
block content
- function capit(s) {
- return s.charAt(0).toUpperCase() + s.slice(1);
- };
- function cy2en(word){
- var a = {" ":"_", "Ё":"YO","Й":"I","Ц":"TS","У":"U","К":"K","Е":"E","Н":"N","Г":"G","Ш":"SH","Щ":"SCH","З":"Z","Х":"H","Ъ":"'","ё":"yo","й":"i","ц":"ts","у":"u","к":"k","е":"e","н":"n","г":"g","ш":"sh","щ":"sch","з":"z","х":"h","ъ":"'","Ф":"F","Ы":"I","В":"V","А":"a","П":"P","Р":"R","О":"O","Л":"L","Д":"D","Ж":"ZH","Э":"E","ф":"f","ы":"i","в":"v","а":"a","п":"p","р":"r","о":"o","л":"l","д":"d","ж":"zh","э":"e","Я":"Ya","Ч":"CH","С":"S","М":"M","И":"I","Т":"T","Ь":"'","Б":"B","Ю":"YU","я":"ya","ч":"ch","с":"s","м":"m","и":"i","т":"t","ь":"y","б":"b","ю":"yu"};
- return word.split('').map(function (char) {
- return a[char] || char;
- }).join("");
- }
table
- var list = new Array(10);
- var itemName = 'скушай еще этих сладких французских булочек да выпей'
- each item in list
tr
td
a(href="#{cy2en(itemName)}")| #{capit(itemName)}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment