mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Math
synced 2024-11-24 07:34:22 +00:00
Merge "Add inverse of texToClass function in comment"
This commit is contained in:
commit
86f359ec30
|
@ -35,8 +35,16 @@
|
||||||
} );
|
} );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Make the className, replacing any non-alphanumerics with their character code
|
||||||
|
*
|
||||||
|
* The reverse of function would look like this, although we have no use for it yet:
|
||||||
|
*
|
||||||
|
* return className.replace( /_([0-9]+)_/g, function () {
|
||||||
|
* return String.fromCharCode( +arguments[ 1 ] );
|
||||||
|
* } );
|
||||||
|
*/
|
||||||
function texToClass( tex ) {
|
function texToClass( tex ) {
|
||||||
// Make the className, replacing any non-alphanumerics with their character code
|
|
||||||
return tex.replace( /[^\w]/g, function ( c ) {
|
return tex.replace( /[^\w]/g, function ( c ) {
|
||||||
return '_' + c.charCodeAt( 0 ) + '_';
|
return '_' + c.charCodeAt( 0 ) + '_';
|
||||||
} );
|
} );
|
||||||
|
|
Loading…
Reference in a new issue