Extension:Link Attributes/ru
Appearance
Статус релиза: стабильно |
|
|---|---|
| Реализация | Функция парсера |
| Описание | Adds support for the rel, rev and class attributes on links |
| Автор(ы) | Toby Inkster, Dennis Roczek, Sam Wilson |
| Последняя версия | 1.1 |
| MediaWiki | >= 1.40.0 |
| Изменения в БД | Нет |
| Лицензия | GNU General Public License 2.0 или позднее |
| Скачать | |
| Переведите расширение Link Attributes, если оно доступно на translatewiki.net | |
This extension adds support for the rel, rev and class attributes on external links:
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.
Использование
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.
Установка
- Скачайте и распакуйте файл(ы) в папку с названием
Link_Attributesв вашей папкеextensions/.
Вместо этого разработчикам и соавторам кода следует установить расширение из Git, используя:cd extensions/ git clone https://gerrit.wikimedia.org/r/mediawiki/extensions/Link_Attributes
- Добавьте следующий код в конце вашего файла LocalSettings.php:
wfLoadExtension( 'Link_Attributes' );
Готово – Перейдите на страницу Special:Version на своей вики, чтобы удостовериться в том, что расширение успешно установлено.
См. также
- Extension:LinkAttributes – a different syntax for adding the attributes.
- T35886
