DokuWiki

It's better when it's simple

User Tools

Site Tools


plugin:autolink4

This is an old revision of the document!


AutoLink 4 Plugin

Compatible with DokuWiki

Greebo

plugin Automatically link text in your wiki to pages

Last updated on
2019-09-02
Provides
Syntax
Repository
Source

This extension has not been updated in over 2 years. It may no longer be maintained or supported and may have compatibility issues.

Similar to autolink2, autolink3, structautolink

Tagged with links

This plugin automatically links text on your page to other pages of your wiki. There are already two other plugins that do this. What makes this one different?

  • It's easy to configure.
  • It's up to date, and works with the latest version of DokuWiki.
  • It doesn't modify the original copies of the page; links are created on demand. This makes it easy to undo changes.
  • It works with autotooltip to add tooltips to its links.

More information: Choosing an autolink plugin.

Installation

Install the plugin using the Plugin Manager and the download URL above, which points to latest version of the plugin. Refer to Plugins on how to install plugins manually.

Examples/Usage

This plugin is configured with a list of links in the DokuWiki admin interface. Each line of the configuration consist of three fields separated by commas:

  • Text to find. This can include certain regular expression characters, like square brackets and question marks. Pipe (|) and parentheses are not allowed. This plugin always links whole words and phrases. It will never link just part of a word.
  • The link for the text.
  • The namespace where the replacement is done. Omit this field to replace everywhere.
  • Flags. These can include:
    • tt: If the Auto-Tooltip plugin is installed, the link will be displayed with a tooltip, including the page title and abstract.
    • once: Only link the first occurrence of this tooltip.
Simple example
Things, mywiki:thing

This links the word “Things” to mywiki:thing, everywhere on your wiki. It only links it when capitalized.

Limiting replacement to a namespace
Things, mywiki:thing, mywiki

The word “Things” will only be replaced inside the “mywiki” namespace.

Tooltips
Things, mywiki:thing, , tt

The link will include a tooltip, which is drawn from the title and abstract of mywiki:thing.

Things, mywiki:thing, , once|tt

The link will include a tooltip, and only the first occurrence of this match will be linked.

Regular expressions
[Tt]hings?, mywiki:thing

This links the words “Thing,” “thing,” “Things” and “things” to mywiki:thing. Remember that some regular expression characters are not allowed.

Proper ordering
Incredible Things, mywiki:thing
Things, mywiki:thing

Replacements are made in the order in which they occur in the configuration. So if you have a short replacement which is contained within a longer one, list the longer one first:

Development

Performance

I tested with 500 regular expression matches, with no noticeable impact on performance. If you scale to several thousand, I recommend limiting the number of regular expression links.

Nerd speak

The algorithmic complexity of this plugin is O(r*u + s), where r is the total number of configured links with regular expression characters, s is the number of configured links without regular expression characters, and u is the number of unique matched text strings on the page.

Change Log

ToDo/Wish List

  • If you have more than 500 or so configured links, you reach the maximum number of hooks DokuWiki can handle. This can be fixed by turning this into an action plugin, or by modifying DokuWiki's code to chunk the regex.

Discussion

plugin/autolink4.1568315268.txt.gz · Last modified: 2019-09-12 21:07 by Aleksandr

Except where otherwise noted, content on this wiki is licensed under the following license: CC Attribution-Share Alike 4.0 International
CC Attribution-Share Alike 4.0 International Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki