19th April 2023 at 10:31am
Deprecated fromv5.3.0(seeTranscludeWidget)
The $macrocall
widget is deprecated. While it will continue to work, users are now advised to use the $transclude
widget, converting the $name
attribute to $variable
.
For example,
<$macrocall $name="my-macro" my-parameter="Elephant"/>
should be changed to:
<$transclude $variable="my-macro" my-parameter="Elephant"/>
Internally, the $macrocall
widget is implemented via the $transclude
widget.
Content and Attributes
The content of the $macrocall
widget is ignored.
Attribute | Description |
---|---|
$name | Name of the macro to invoke |
$type | ContentType with which the macro text should be parsed (defaults to text/vnd.tiddlywiki ) |
$output | ContentType for the output rendering (defaults to text/html , can also be text/plain or text/raw ) |
parameters | Macro parameters specified as attributes |