Extension:AnchorHandler
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. |
AnchorHandler Release status: unmaintained |
|
---|---|
Implementation | Tag |
Description | Allows inserting <a> anchor tags into wikitext |
Author(s) | Ike Hecht (tosfostalk) |
Latest version | 0.2 (February 2018) |
MediaWiki | 1.29+ |
PHP | 5.3+ |
Database changes | No |
License | GNU General Public License 2.0 or later |
Download | |
|
|
Quarterly downloads | 2 (Ranked 130th) |
Translate the AnchorHandler extension if it is available at translatewiki.net | |
The AnchorHandler extension allows inserting <a>
anchor tags into wikitext. By default, it simply passes through the text within the <a>...</a>
tags. It can be configured to actually parse and convert the anchor tags to working links in certain namespaces. This is especially helpful when importing raw HTML into a wiki.
Installation
edit- Download and move the extracted
AnchorHandler
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/AnchorHandler - Add the following code at the bottom of your LocalSettings.php file:
wfLoadExtension( 'AnchorHandler' );
- Configure as required.
- Done – Navigate to Special:Version on your wiki to verify that the extension is successfully installed.
Configuration
edit$egAnchorNamespaces
Tells the extension to actually convert the anchor tags to links in the specified namespaces. Example:
$egAnchorNamespaces = [ NS_MAIN ];
- See this list of namespace constants.
See also
edit- Extension:HTML Tags – Adds
<htmltag></htmltag>
tags, that can be used to display HTML tags within wiki pages that may otherwise be disallowed by the MediaWiki parser.