User:WOSlinkerBot/lint2.js

The importance of User:WOSlinkerBot/lint2.js in today's society is undeniable. Whether as a public figure, topic of debate, or significant date, User:WOSlinkerBot/lint2.js occupies a relevant place in daily conversation. Its impact extends to all aspects of life, from politics to entertainment, influencing our opinions, decisions and actions. In this article we will explore how User:WOSlinkerBot/lint2.js has shaped our society and how it continues to play a central role in our lives.
function lint_queryString(p) {
    var re = RegExp('' + p + '=(*)');
    var matches;
    if (matches = re.exec(document.location)) {
        try { 
            return decodeURI(matches);
        } catch (e) { }
    }
    return null;
}

//Add a 'lint edit' tab
if(mw.config.get('wgArticleId') != 0 ) { 
    $( function lintEditButton() {
        mw.util.addPortletLink('p-cactions', 
                       mw.util.getUrl(null,{action:'edit',lintedit:true}),
                       'lint2',
                       'p-lint',
                       'lint2 edit');
    }
)}

if(mw.config.get('wgAction') == 'edit' && lint_queryString('lintedit') == 'true') {
    $(function lint() {
        var myContent = document.getElementById('wpTextbox1').value;

          myContent = myContent.replace(/(\{\{legend2\|\#*\| *\'\') *(*) *\|/gi,'$1$2\'\'|');


          if(document.getElementById('wpTextbox1').value != myContent) {

              if(document.getElementById('wpTextbox1').value != myContent) {
                  document.getElementById('wpTextbox1').value=myContent;
                  document.getElementById('wpSummary').value='reduce ] by fixing italics in legend2 template';
                  document.getElementById('wpMinoredit').checked = true;
              }
          }

    }
)}