Módulo:LinkSkype/doc

Version check

[editar código]

Designación de la versión en Wikidata: 2026-05-17 Ok!

This module provides links to Skype addresses.

It is no longer used

JavaScript

[editar código]

Se requiere un script de JavaScript para mostrar los enlaces:

/** 	Support of Skype links. Skype protocol is not supported by the 	Mediawiki software, and the link is to be added later */ 	 function addSkypeLinks() { 	$( '.listing-skype-link' ).each( function() { 		var p = $( this ), 			t = p.text(); 		p.html( mw.format( '<a href="skype:$1">$2</a>', t, t.replace( /\?.*$/, '' ) ) ); 	}); }