[jQuery] plug-in tablesorter bug/anomalies

[jQuery] plug-in tablesorter bug/anomalies


The tablesorter plug-in by Christian Bach has what I think are a
couple of bugs/anomalies.
1) a column that starts with a zero is not identified as a 'digit'. I
think it should be.
2) a column that starts with an IP address that looks like 192.168.1.1
or 1.127.77.1 -- that is any IP with a single digit is not identified
as an IP address because the "is" function only looks for \d{2,3}
instead of \d{1,3}.
3) some of the examples in the source code are wrong.
Otherwise a great plug-in and worth the effort to debug.