mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-06-28 22:30:04 +00:00
Allow counting by characters in lieu of a word count, for East Asian languages. First pass. see #8759.
git-svn-id: https://develop.svn.wordpress.org/trunk@19966 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -1,18 +1,23 @@
|
||||
|
||||
(function($) {
|
||||
(function($,undefined) {
|
||||
wpWordCount = {
|
||||
|
||||
settings : {
|
||||
strip : /<[a-zA-Z\/][^<>]*>/g, // strip HTML tags
|
||||
clean : /[0-9.(),;:!?%#$¿'"_+=\\/-]+/g, // regexp to remove punctuation, etc.
|
||||
count : /\S\s+/g // counting regexp
|
||||
w : /\S\s+/g, // word-counting regexp
|
||||
c : /\S/g // char-counting regexp for asian languages
|
||||
},
|
||||
|
||||
block : 0,
|
||||
|
||||
wc : function(tx) {
|
||||
wc : function(tx, type) {
|
||||
var t = this, w = $('.word-count'), tc = 0;
|
||||
|
||||
if ( type === undefined )
|
||||
type = wordCountL10n.type;
|
||||
if ( type !== 'w' && type !== 'c' )
|
||||
type = 'w';
|
||||
|
||||
if ( t.block )
|
||||
return;
|
||||
|
||||
@@ -22,7 +27,7 @@
|
||||
if ( tx ) {
|
||||
tx = tx.replace( t.settings.strip, ' ' ).replace( / | /gi, ' ' );
|
||||
tx = tx.replace( t.settings.clean, '' );
|
||||
tx.replace( t.settings.count, function(){tc++;} );
|
||||
tx.replace( t.settings[type], function(){tc++;} );
|
||||
}
|
||||
w.html(tc.toString());
|
||||
|
||||
|
||||
Reference in New Issue
Block a user