mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-07 10:34:53 +00:00
3af2cc2691
Can invoke any functions, not just those start with a period. And can pass zero parameters (in contrast when invoked as a custom filter operator there's no way to omit the first parameter).
24 lines
569 B
Plaintext
24 lines
569 B
Plaintext
title: CustomOperators/Parameterised
|
|
description: Parameterised custom operator usage
|
|
type: text/vnd.tiddlywiki-multiple
|
|
tags: [[$:/tags/wiki-test-spec]]
|
|
|
|
title: Output
|
|
|
|
\whitespace trim
|
|
\function .multiplybysomething(first:ignored,factor:2)
|
|
[multiply[2]multiply<factor>]
|
|
\end
|
|
|
|
<$text text={{{ [[123].multiplybysomething[]] }}}/>
|
|
-
|
|
<$text text={{{ [[123].multiplybysomething[x],[4]] }}}/>
|
|
|
|
|
<$text text={{{ [[123]function[.multiplybysomething]] }}}/>
|
|
-
|
|
<$text text={{{ [[123]function[.multiplybysomething],[x],[4]] }}}/>
|
|
|
|
+
|
|
title: ExpectedResult
|
|
|
|
<p>492-984|492-984</p> |