이 문서는 https://tiddlywiki.com/languages/ko-KR/에서 티들리위키의 정적 HTML 표현의 일부입니다

variables Operator

2019년 3월 30일 오전 10:01
purposeselect the names of all the actively defined variables
inputignored
parameternone
outputthe names of all the actively defined variables

Learn more about how to use Filters

Introduced in v5.1.20 The primary purpose of the variables operator is to implement the dumpvariables Macro:

\define dumpvariables()
\whitespace trim
<ul>
<$list filter="[variables[]]" variable="varname">
<li>
<strong><code><$text text=<<varname>>/></code></strong>:<br/>
<$codeblock code={{{ [<varname>getvariable[]] }}}/>
</li>
</$list>
</ul>
\end

Examples