2 * @class mw.Api.plugin.parse
6 $.extend( mw
.Api
.prototype, {
8 * Convenience 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
) {
18 var apiPromise
= this.get( {
20 contentmodel
: 'wikitext',
24 // Backwards compatibility (< MW 1.20)
26 mw
.track( 'mw.deprecate', 'api.cbParam' );
27 mw
.log
.warn( 'Use of mediawiki.api callback params is deprecated. Use the Promise instead.' );
31 .then( function ( data
) {
32 return data
.parse
.text
['*'];
36 .promise( { abort
: apiPromise
.abort
} );
42 * @mixins mw.Api.plugin.parse
45 }( mediaWiki
, jQuery
) );