Extension:LinkSuggest2

MediaWiki extensions manual
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
  • $wgLinkSuggestMaxSuggestions
  • $wgEnableEditFormLinkSuggest
Quarterly downloads 1 (Ranked 148th)
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 your extensions/ 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 edit

The 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' ) );