This page is part of a static HTML representation of the TiddlyWiki at https://tiddlywiki.com/

insertafter Operator

 23rd February 2022 at 12:44am
purposeinsert an item T into a list immediately after an item A
inputa selection of titles
suffix(optional) the name of a variable containing the title of the tiddler after which this one should be inserted
parameterthe insertafter operator accepts 1 or 2 parameters, see below for details
outputthe input tiddler list with the new entry inserted

Learn more about how to use Filters

Introduced in v5.2.3

The insertafter operator requires at least one parameter which specifies the title to insert into the input list. A second parameter can be used to specify the title after which the new title should be inserted.

A suffix can also be used to specify A, the title after which the new title should be inserted, but this form is deprecated. Instead, the two-parameter form is recommended. If the two-parameter form is used, the suffixes start and end can be used to specify where the item should be inserted if A is not found.

insertafter:<after-title-variable>[<title>]
insertafter:<missing-location>[<title>],[<after-title>]
  • title : a title T to insert in the input list.
  • after-title : (optional). Insert T after this title A in the input list.
  • after-title-variable : (optional). The name of a variable specifying A instead of the after-title parameter.
  • missing-location : (optional). Either start or end: where to insert T if A is not found in the list.

If the item A isn't present in the input list then the new item is inserted at the end of the list. Introduced in v5.2.3 The suffixes start and end can be spedified to control where the new item is inserted when A is not found. The suffix end is the default, inserting the new item at the end of the list. The suffix start will cause the new item to be inserted at the start of the list when A is not found.

Tip
Either parameter can be a string, a text reference or a variable

Tip
If A is specified as both a suffix and a parameter, the parameter takes precedence

Examples