_ _    _ _____  ___   __                       
 __      _(_) | _(_)___ / ( _ ) / /_   ___ ___  _ __ ___  
 \ \ /\ / / | |/ / | |_ \ / _ \| '_ \ / __/ _ \| '_ ` _ \ 
  \ V  V /| |   <| |___) | (_) | (_) | (_| (_) | | | | | |
   \_/\_/ |_|_|\_\_|____/ \___/ \___(_)___\___/|_| |_| |_|

User:MECU/br.js

Today, User:MECU/br.js is a topic that has generated great interest and debate in different areas. From politics to science, culture and society, User:MECU/br.js has captured the attention of millions of people around the world. As time progresses, the importance of understanding and analyzing User:MECU/br.js in depth becomes increasingly evident, as its impact extends to multiple aspects of our daily lives. In this article, we will explore the different dimensions of User:MECU/br.js and its relevance in the current context, with the aim of shedding light on a topic that continues to be the object of study and reflection.
//<pre>
function brfixer() {
    var txt = document.editform.wpTextbox1;

    //replace
    txt.value = txt.value.replace(new RegExp('<BR>', 'gi'), '<br />');
    txt.value = txt.value.replace(new RegExp('<BR/>' ,'gi'), '<br />');
    txt.value = txt.value.replace(new RegExp('<BR />', 'gi'), '<br />');
    txt.value = txt.value.replace(new RegExp('</BR>', 'gi'), '<br />');
    txt.value = txt.value.replace(new RegExp('<BR/ >', 'gi'), '<br />');

    // Add a tag to the summary box
    var txt = document.editform.wpSummary;
    var summary = "<BR>s fixed using ]";
	if (txt.value.indexOf(summary) == -1) {
		if (txt.value.match(/?\s*$/)) {
			txt.value += " | ";
		}
		txt.value += summary;
	}

    // Press the diff button to check it
    document.editform.wpDiff.click()
}

addOnloadHook(function () {
    if(document.forms.editform) {
        mw.util.addPortletLink('p-cactions', 'javascript:brfixer()', '<BR>', 'ca-brfixer', 'Fixes <BR>s to <br />', '', '');
    }
});
//</pre>