Erweiterung:Link Attributes
Appearance
Freigabestatus: stabil |
|
|---|---|
| Einbindung | Parser-Funktion |
| Beschreibung | Fügt Unterstützung für die Attribute rel, rev und class auf Links hinzu |
| Autor(en) | Toby Inkster, Dennis Roczek, Sam Wilson |
| Letzte Version | 1.1 |
| MediaWiki | >= 1.40.0 |
| Datenbankänderungen | Nein |
| Lizenz | GNU General Public License 2.0 oder neuer |
| Herunterladen | |
| Übersetze die Link Attributes-Erweiterung, wenn sie auf translatewiki.net verfügbar ist | |
Diese Erweiterung fügt Unterstützung für die Attribute rel, rev und class auf externen Links hinzu:
rel– The relationship of the linked URL as space-separated link types.rev– Specified a reverse link; the opposite of therelattribute. Deprecated for being very confusing.class– A space-separated list of the classes of the element. Classes allows CSS and JavaScript to select and access specific elements.
Verwendung
The syntax is a little unorthodox. To set the rel attribute, place one or more tokens in double-parentheses at the end of the link title. e.g.:
[http://tobyinkster.co.uk/ My website((me home))]
The above would be converted to the following link:
<a href="http://tobyinkster.co.uk/" rel="me home" class="external">My website</a>
To set the class attribute, the same syntax is used, but tokens which represent classes are prefixed with a dot:
[http://tobyinkster.co.uk/ My website((me .class1 home .class2))]
Becomes:
<a href="http://tobyinkster.co.uk/" rel="me home" class="external class1 class2">My website</a>
Similarly, prefixing with a tilde (~) sets the rev attribute.
Tokens may be prefixed by a minus sign (-) to indicate that you don't want to add the token, but remove it. For example:
[http://tobyinkster.co.uk/ My website((me -.external home))]
Becomes:
<a href="http://tobyinkster.co.uk/" rel="me home">My website</a>
The "nofollow" rel token is considered untouchable though.
Installation
- Die Erweiterung herunterladen und die Datei(en) in ein Verzeichnis namens
Link_Attributesim Ordnerextensions/ablegen.
Entwickler und Code-Beitragende sollten stattdessen die Erweiterung von Git installieren, mit:cd extensions/ git clone https://gerrit.wikimedia.org/r/mediawiki/extensions/Link_Attributes
- Folgenden Code am Ende deiner LocalSettings.php-Datei einfügen:
wfLoadExtension( 'Link_Attributes' );
Erledigt – Navigiere zu Special:Version in deinem Wiki, um zu überprüfen, ob die Erweiterung erfolgreich installiert wurde.
Siehe auch
- Extension:LinkAttributes – a different syntax for adding the attributes.
- T35886
