The TranscludeWidget dynamically imports content from another tiddler.
| Attribute | Description |
|---|---|
| tiddler | The title of the tiddler to transclude (defaults to the current tiddler) |
| field | The field name of the current tiddler (defaults to "text"; if present takes precedence over the index attribute) |
| index | The index of a property in a DataTiddler |
| subtiddler | Optional SubTiddler title when the target tiddler is a plugin (see below) |
| mode | Override the default parsing mode for the transcluded text to "block" or "inline" |
The TranscludeWidget treats any contained content as a fallback if the target of the transclusion is not defined (ie a missing tiddler or a missing field).
TiddlyWiki parses text in two modes:
Usually, the mode is determined by whether the transclude widget itself has been parsed in block or inline mode. This can be overridden with the mode attribute.
For example, consider tiddler "A" with this content:
# Item one
#<$transclude tiddler="B"/>
# Item twoAnd a tiddler "B" with this content:
# Item one - a
# Item one - bThe result will be something like this:
This can be fixed by amending tiddler "A":
# Item one
#<$transclude tiddler="B" mode="block"/>
# Item twoThe transclude widget allows access to the individual tiddlers stored within a plugin.
The following example will transclude the core version of the tiddler $:/DefaultTiddlers even if it has been overridden: