// <pre><nowiki>
// <nowiki>If you are editing a page, click the prose button on your tab bar to add "{{prose|{{subst:CURRENTMONTHNAME}} {{subst:CURRENTYEAR}}}}" to the top, set "'Tagged with {{[[Template:Prose|prose]]}}" as the edit summary, mark it as a minor edit, and submit.</nowiki>
function doQprose() {
document.editform.wpTextbox1.value = '{' + '{' + 'Prose|date=' + '{' + '{' + 'subst:CURRENTMONTHNAME}} ' + '{' + '{' + 'subst:CURRENTYEAR}}}}\n\n' + document.editform.wpTextbox1.value;
document.editform.wpSummary.value = 'Tagged with {{[[Template:Prose|prose]]}}.';
document.editform.wpMinoredit.checked = true;
document.editform.submit();
}
addOnloadHook(function() {
if (mw.config.get('wgCanonicalNamespace') == "User" || mw.config.get('wgCanonicalNamespace') == "User_talk") {
return;
}
if (document.editform) {
mw.util.addPortletLink("p-cactions", "javascript:doQprose()", "prose", "ca-prose", "Tagged with {{[[Template:Prose|prose]]}}", "");
}
});
// by [[User:Download|download]]
//