Skip to content

Commit

Permalink
Merge pull request #19 from mac2000/master
Browse files Browse the repository at this point in the history
soft sign rule added
  • Loading branch information
Florian Eckerstorfer committed Mar 9, 2014
2 parents 2f88584 + fea34a7 commit 928bf05
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 2 additions & 0 deletions src/Slugify.php
Original file line number Diff line number Diff line change
Expand Up @@ -317,6 +317,8 @@ class Slugify implements SlugifyInterface
'ж' => 'zh',
'ї' => 'ji',
'Ї' => 'Ji',
'ь' => '',
'Ь' => ''
);

/**
Expand Down
3 changes: 2 additions & 1 deletion tests/SlugifyTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,8 @@ public function provider()
array('Â â Ê ê Ô ô Û 1', 'a-a-e-e-o-o-u-1'),
array('°¹²³@', '0123at'),
array('Mórë thån wørds', 'more-than-words'),
array('Блоґ їжачка', 'blog-jizhachka')
array('Блоґ їжачка', 'blog-jizhachka'),
array('фильм', 'film')
);
}
}

0 comments on commit 928bf05

Please sign in to comment.