Extension:LinkSuggest2
This extension is currently not actively maintained! Although it may still work, any bug reports or feature requests will more than likely be ignored. If you are interested in taking on the task of developing and maintaining this extension, you can request repository ownership. As a courtesy, you may want to contact the author. You should also remove this template and list yourself as maintaining the extension in the page's {{Extension }} infobox. |
LinkSuggest2 Release status: unmaintained |
|
---|---|
Implementation | Page action |
Description | Provides the user with article title suggestions as they type in wikilinks. |
Author(s) | TK-999 (TK-999talk) |
Latest version | 0.1 |
MediaWiki | 1.19+ |
License | GNU General Public License 2.0 or later |
Download | |
|
|
Quarterly downloads | 0 |
Translate the LinkSuggest2 extension if it is available at translatewiki.net | |
The LinkSuggest2 extension provides the user with article title suggestions as they type in wikilinks. It is functionally identical to Extension:LinkSuggest, but has been rewritten from the ground up to support recent versions of MediaWiki.
Installation
edit- Download and move the extracted
LinkSuggest2
folder to yourextensions/
directory.
Developers and code contributors should install the extension from Git instead, using:cd extensions/
git clone https://gerrit.wikimedia.org/r/mediawiki/extensions/LinkSuggest2 - Add the following code at the bottom of your LocalSettings.php file:
wfLoadExtension( 'LinkSuggest2' );
- Done – Navigate to Special:Version on your wiki to verify that the extension is successfully installed.
Configuration parameters
edit- $wgLinkSuggestMaxSuggestions
- The maximum amount of suggestions to show for each link (default 3).
- $wgEnableEditFormLinkSuggest
- Whether to enable LinkSuggest on edit forms (default true).
Extending
editThe extension exposes a simple API which can be used by other extensions to add LinkSuggest support to arbitrary elements:
LinkSuggest::singleton()->addSelectors( array( '#foo', '.bar', '.my-extension textarea' ) );