แม่แบบ:Substcheck
หน้าตา
SUBST
This template can be used in conditional processing in other templates to detect substitutions.
If you use Module:Unsubst, you need not use this template.
Usage
[แก้]If you put <includeonly>{{subst:</includeonly><includeonly>substcheck}}</includeonly>
into a template, it will expand into one of the following, depending how the template is being viewed.
- SUBST if the template is being substituted
- {{subst:substcheck}} if the template is being transcluded
- Empty string if you are viewing the template page.
Using this template differently may yield different results; the above is the most universal way.
Lua replacement
[แก้]if mw.isSubsting() then
-- substituting: "SUBST"
elseif mw.getCurrentFrame():getParent():getTitle() == mw.title.getCurrentTitle().fullText then
-- viewed directly: ""
else
-- transclusion: "{{subst:substcheck}}"
end
See also
[แก้]คู่มือการใช้งานที่ปรากฏด้านบนนี้ดึงมาจาก แม่แบบ:Substcheck/doc (แก้ | ประวัติ) ผู้เขียนสามารถทำการทดลองได้ที่กระบะทราย (สร้าง | คัดลอก) และชุดทดสอบ (สร้าง) ของแม่แบบนี้ โปรดเพิ่มหมวดหมู่ไปที่หน้าย่อย /doc หน้าย่อยของแม่แบบนี้ |