mic_none

User:Remsense/Line breaks to lists.js Source: en.wikipedia.org/wiki/User:Remsense/Line_breaks_to_lists.js

 // <nowiki>
addOnloadHook(function () {
  if(document.forms.editform) {
    $(addPortletLink('p-cactions', '#', 'Line breaks → lists', 'ca-br_to_list', 'Convert line breaks to lists', '',
		document.getElementById('ca-edit'))).click(function(e) {
				var str = $( '#wpTextbox1').textSelection( "getSelection" );
    			text = str.replace(/<br ?\/?>/gi, "\n | ");
    			if ( str !== text ) {
    				text = "{{ubl\n | " + text + "\n}}"
    				$( '#wpTextbox1' ).textSelection( 'replaceSelection', text );
    			}
		});
  }
});
 // </nowiki>