2 * @class mw.Api.plugin.parse
6 $.extend( mw
.Api
.prototype, {
8 * Convinience method for 'action=parse'.
10 * @param {string} wikitext
11 * @param {Function} [ok] Success callback (deprecated)
12 * @param {Function} [err] Error callback (deprecated)
13 * @return {jQuery.Promise}
14 * @return {Function} return.done
15 * @return {string} return.done.data Parsed HTML of `wikitext`.
17 parse: function ( wikitext
, ok
, err
) {
21 // Backwards compatibility (< MW 1.20)
22 d
.done( ok
).fail( err
);
24 apiPromise
= this.get( {
26 contentmodel
: 'wikitext',
29 .done( function ( data
) {
30 if ( data
.parse
&& data
.parse
.text
&& data
.parse
.text
['*'] ) {
31 d
.resolve( data
.parse
.text
['*'] );
36 return d
.promise( { abort
: apiPromise
.abort
} );
42 * @mixins mw.Api.plugin.parse
45 }( mediaWiki
, jQuery
) );