Sorry for the unclearly my English not that good, I will learn it harder.
My point is I want to solve the call js macro by macrocall question(Yes just the question in this post) by myself and I stuck at how to find the tiddler which call the now.js
In the build-in js macros. I found now.js has its parameter, so I just find which tiddler has called the now.js macro I will know how to set the parameter.
So I go to advance search and search for ânow.jsâ. The result of the advanced search canât help me find the caller.
Hi @Ori you can where the core calls the ânowâ macro by searching the shadows for <now. That will find invocations within filters (eg [<now>]) and within wikitext (eg <<now>>). It wonât find calls via explicit <$macrocall widgets.
The definition of your macro parameters should look like this:
exports.params = [
{name: "name"}
];
And then the invocation <$macrocall $name="jstiddler" name="Banana" /> should work as expected.