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

QualifyWidget

2022년 1월 25일 오후 4:30

Introduction

The $qualify widget sets a variable to a unique string that encodes its position within the widget tree, as identified by the stack of transcluded tiddlers that lead to that position.

Internally, it is implemented using the transclusion variable.

Content and Attributes

The content of the $qualify widget is the scope for the value assigned to the name variable.

AttributeDescription
titleThe prefix for the string, normally a tiddler title
nameThe name of the variable to be set to the unique string

Examples

The two examples below are identical, but produce different results because the second one has been transcluded from another tiddler.

Each example shows the result of calling qualify and then the value of the transclusion variable.

<$qualify title="BaseTiddler" name="iamnotanumber">
<ul>
<li><code><<iamnotanumber>></code></li>
<li><code><<transclusion>></code></li>
</ul>
</$qualify>
<$qualify title="BaseTiddler" name="iamnotanumber">
<ul>
<li><code><<iamnotanumber>></code></li>
<li><code><<transclusion>></code></li>
</ul>
</$qualify>

Remarks

In most cases it will be simpler to use the qualify Macro.