ব্যবহারকারী:Pmlineditor/dash.js: সংশোধিত সংস্করণের মধ্যে পার্থক্য

বিষয়বস্তু বিয়োগ হয়েছে বিষয়বস্তু যোগ হয়েছে
Pmlineditor (আলোচনা | অবদান)
+
 
(কোনও পার্থক্য নেই)

০৯:২০, ১৪ আগস্ট ২০১৯ তারিখে সম্পাদিত সর্বশেষ সংস্করণ

/* global $, pathoschild */

/**
 * TemplateScript adds configurable templates and scripts to the sidebar, and adds an example regex editor.
 * @see https://meta.wikimedia.org/wiki/TemplateScript
 * @update-token [[File:pathoschild/templatescript.js]]
 */
$.ajax('//tools-static.wmflabs.org/meta/scripts/pathoschild.templatescript.js', { dataType:'script', cache:true }).then(function() {
	pathoschild.TemplateScript.add([
		{
			name: 'convert dash',
			script: function(editor) {
				editor
					.replace(/-/g, '—')

					
			}
		}
	]);
});