Note: After saving, you have to bypass your browser's cache to see the changes. Google Chrome, Firefox, Microsoft Edge and Safari: Hold down the ⇧ Shift key and click the Reload toolbar button. For details and instructions about other browsers, see Wikipedia:Bypass your cache.
var AutoEd_baseurl = 'http://en.wikipedia.org/w/index.php?action=raw&ctype=text/javascript&title=User:Jonesey95/AutoEd/';
if (location.protocol === 'https:') {
  AutoEd_baseurl = 'https://en.wikipedia.org/w/index.php?action=raw&ctype=text/javascript&title=User:Jonesey95/AutoEd/';
}
 
mw.loader.load(AutoEd_baseurl + 'core3.js'); //Imports the "framework" script needed to make this function

//   ======  Use for one-off replacements  ========

//Sets variable configuration
autoEdTag3 = "Remove template to comply with [[MOS:SMALLFONT]]; font size needs to be 85% or greater"; //Tweaks edit summary
autoEdLinkName3 = "AutoEd one-off"; //Changes the link name at the top of the page
autoEdLinkHover3 = "AutoEd one-off"; //When user hovers over link
 
//Set up function
function ReplaceTemplate(str) { //function to replace a template
 
  //Remove midsize template, leaving contents
  str = str.replace(/{{midsize\|([^}]+)}}/gi, '$1');

  str = str.replace(/({{Tree chart\/start)\|style=font\-size: 85\%;}}/gi, '$1}}');
  str = str.replace(/({{Tree chart\/start\|style=clear: both;) font\-size: 85\%;}}/gi, '$1}}');

  return str;
}
 
function autoEdFunctions3() { //Activates individual modules when "auto ed" tab is clicked
    var txt = document.editform.wpTextbox1; //This stays as "Textbox1". Do not increment.
    txt.value = ReplaceTemplate(txt.value);
//    txt.value = autoEdWhitespace(txt.value);
}