mirror of
https://github.com/Mottie/tablesorter.git
synced 2025-01-12 15:24:21 +00:00
Core: add "ō" to sortLocaleCompare & update docs
This commit is contained in:
parent
618a4a01fe
commit
ee9c301edb
@ -23,19 +23,20 @@
|
||||
// provided by sugar.js sorting alogrithms: http://sugarjs.com/sorting
|
||||
/*
|
||||
$.tablesorter.characterEquivalents = {
|
||||
"a" : "\u00e1\u00e0\u00e2\u00e3\u00e4", // áàâãä
|
||||
"A" : "\u00c1\u00c0\u00c2\u00c3\u00c4", // ÁÀÂÃÄ
|
||||
"c" : "\u00e7", // ç
|
||||
"C" : "\u00c7", // Ç
|
||||
"e" : "\u00e9\u00e8\u00ea\u00eb", // éèêë
|
||||
"E" : "\u00c9\u00c8\u00ca\u00cb", // ÉÈÊË
|
||||
"i" : "\u00ed\u00ec\u0130\u00ee\u00ef", // íìIîï
|
||||
"I" : "\u00cd\u00cc\u0130\u00ce\u00cf", // ÍÌIÎÏ
|
||||
"o" : "\u00f3\u00f2\u00f4\u00f5\u00f6", // óòôõö
|
||||
"O" : "\u00d3\u00d2\u00d4\u00d5\u00d6", // ÓÒÔÕÖ
|
||||
"S" : "\u00df", // ß
|
||||
"u" : "\u00fa\u00f9\u00fb\u00fc", // úùûü
|
||||
"U" : "\u00da\u00d9\u00db\u00dc" // ÚÙÛÜ
|
||||
'a' : '\u00e1\u00e0\u00e2\u00e3\u00e4\u0105\u00e5', // áàâãäąå
|
||||
'A' : '\u00c1\u00c0\u00c2\u00c3\u00c4\u0104\u00c5', // ÁÀÂÃÄĄÅ
|
||||
'c' : '\u00e7\u0107\u010d', // çćč
|
||||
'C' : '\u00c7\u0106\u010c', // ÇĆČ
|
||||
'e' : '\u00e9\u00e8\u00ea\u00eb\u011b\u0119', // éèêëěę
|
||||
'E' : '\u00c9\u00c8\u00ca\u00cb\u011a\u0118', // ÉÈÊËĚĘ
|
||||
'i' : '\u00ed\u00ec\u0130\u00ee\u00ef\u0131', // íìİîïı
|
||||
'I' : '\u00cd\u00cc\u0130\u00ce\u00cf', // ÍÌİÎÏ
|
||||
'o' : '\u00f3\u00f2\u00f4\u00f5\u00f6\u014d', // óòôõöō
|
||||
'O' : '\u00d3\u00d2\u00d4\u00d5\u00d6\u014c', // ÓÒÔÕÖŌ
|
||||
'ss': '\u00df', // ß (s sharp)
|
||||
'SS': '\u1e9e', // ẞ (Capital sharp s)
|
||||
'u' : '\u00fa\u00f9\u00fb\u00fc\u016f', // úùûüů
|
||||
'U' : '\u00da\u00d9\u00db\u00dc\u016e' // ÚÙÛÜŮ
|
||||
};
|
||||
*/
|
||||
// modify the above defaults as follows
|
||||
|
@ -1376,7 +1376,7 @@ From the example function above, you'll end up with something similar to this HT
|
||||
<li><code>ç</code> replaced with <code>c</code></li>
|
||||
<li><code>éèêë</code> replaced with <code>e</code></li>
|
||||
<li><code>íìİîï</code> replaced with <code>i</code></li>
|
||||
<li><code>óòôõö</code> replaced with <code>o</code></li>
|
||||
<li><code>óòôõöō</code> replaced with <code>o</code></li>
|
||||
<li><code>úùûü</code> replaced with <code>u</code></li>
|
||||
<li><code>ß</code> replaced with <code>S</code></li>
|
||||
</ul>
|
||||
|
@ -1594,8 +1594,8 @@
|
||||
'E' : '\u00c9\u00c8\u00ca\u00cb\u011a\u0118', // ÉÈÊËĚĘ
|
||||
'i' : '\u00ed\u00ec\u0130\u00ee\u00ef\u0131', // íìİîïı
|
||||
'I' : '\u00cd\u00cc\u0130\u00ce\u00cf', // ÍÌİÎÏ
|
||||
'o' : '\u00f3\u00f2\u00f4\u00f5\u00f6', // óòôõö
|
||||
'O' : '\u00d3\u00d2\u00d4\u00d5\u00d6', // ÓÒÔÕÖ
|
||||
'o' : '\u00f3\u00f2\u00f4\u00f5\u00f6\u014d', // óòôõöō
|
||||
'O' : '\u00d3\u00d2\u00d4\u00d5\u00d6\u014c', // ÓÒÔÕÖŌ
|
||||
'ss': '\u00df', // ß (s sharp)
|
||||
'SS': '\u1e9e', // ẞ (Capital sharp s)
|
||||
'u' : '\u00fa\u00f9\u00fb\u00fc\u016f', // úùûüů
|
||||
|
Loading…
Reference in New Issue
Block a user