We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
<script template-helpers>
<script marko-init>
Old:
<script template-helpers> function sum(a, b) { return a + b; } </script> <div>The sum of 1 + 2 is ${sum(1, 2)}</div>
New:
static function sum(a, b) { return a + b; } <div>The sum of 1 + 2 is ${sum(1, 2)}</div>
For more information, check out issue #547.