1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-10-01 16:30:46 +00:00

Clarify that the recent changes allow functions to be invoked with the double bracket syntax

In other words, the transclude widget distinguishes between functions and macros and handles the parameters appropriately
This commit is contained in:
jeremy@jermolene.com 2022-05-08 16:05:32 +01:00
parent e9630328f1
commit 4f2f689ab9

View File

@ -12,7 +12,10 @@ title: Output
<$transclude $variable='test' one='Ferret'/>
<$transclude $variable='test'/>
<<test "Rat">>
<<test one:"Mouse">>
+
title: ExpectedResult
<p>{Ferret}{Jaguar}</p>
<p>{Ferret}{Jaguar}{Rat}{Mouse}</p>