* @classdesc Posts messages to wikitext talk pages.
*
* @class mw.messagePoster.WikitextMessagePoster
* @extends mw.messagePoster.MessagePoster
* @type {mw.messagePoster.WikitextMessagePoster}
*
* @constructor
* @description Create an instance of `mw.messagePoster.WikitextMessagePoster`.
* @param {mw.Title} title Wikitext page in a talk namespace, to post to
* @param {mw.Api} api mw.Api object to use
*/
functionWikitextMessagePoster(title,api){
this.api=api;
this.title=title;
}
OO.inheritClass(
WikitextMessagePoster,
mw.messagePoster.MessagePoster
);
/**
* @inheritdoc
* @param {string} subject Section title.
* @param {string} body Message body, as wikitext. Signature code will automatically be added unless the message already contains the string ~~~.
* @param {Object} [options] Message options:
* @param {string} [options.tags] [Change tags](https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Tags) to add to the message's revision, pipe-separated.