Template:Tld
{{tld|...}}
此模板目前缺乏相關中文使用說明。 請能清楚敘述本模板的用途及使用方法的編輯者協助編寫說明文件或者翻譯其他語言版本。 本模板可能使用了模板參數,若無完整的使用說明將不便於他人了解、引用、維護與修改。 |
This is the {{tlc}}
template.
This page also provides the full documentation for the templates {{tld}}
and {{tlf}}
, which work almost exactly identically.
Purpose and naming
[编辑源代码]When a template name with braces is to be shown in documentation, the braces have to be escaped in some way so it doesn't become an actual call to the template. Instead of using <nowiki></nowiki>
tags you can write it more simply and concisely by using the {{tlc}}
, {{tld}}
, or {{tlf}}
templates.
These templates work similarly to {{tl}}
and {{tlx}}
, but don't make the template name into a link. When writing documentation you might want to avoid a lot of unnecessary links, since they can decrease readability. So on the first occurrence of a template name use {{tl}}
or {{tlx}}
, and then use {{tlc}}
, {{tld}}
or {{tlf}}
thereafter.
Template | Mnemonic | Format differentiation |
---|---|---|
{{tlc}}
|
Template link code | Uses the <code>...</code> tags meant for showing programming code.
|
{{tld}}
|
Template link dialup-host | Uses the <tt>...</tt> tags sometimes used for showing programming code. Essentially the non-linking equivalent of {{tlx}} .
|
{{tlf}}
|
Template link format-normal | Uses proportional-spaced font as is normal for regular text rather than a monospace font as typically used with programming code. Essentially the non-linking equivalent of {{tlp}} .
|
The three names were based on {{tl}}
template link', despite the fact that, unlike the actual {{tl}}
template, these three don't include an actual link. The mnemonics for {{tld}}
and {{tlf}}
were invented after the fact, since the template creator used the single letters still available rather than the preferred {{tlt}}
(using <tt>) and {{tln}}
(using "normal", non-coded text style) monikers.
Basic operation
[编辑源代码]Here is how these templates look. Code is to the left; actual rendering to the right:
{{tlc|name|parameters}}
={{name|parameters}}
{{tld|name|parameters}}
={{name|parameters}}
{{tlf|name|parameters}}
= {{name|parameters}}
Use with editprotected templates
[编辑源代码]Most Wikipedia users and even editors will have little or no need for use (or knowledge) of these templates. You will find them of more use if you are a writer or documenter of templates. However, editors may be pointed here when attempting to deal with edit requests on pages which have been protected in some way.
Pages which have been protected can't be edited by every user, but would-be editors can request specific changes on the corresponding Discussion page. An editor requesting a change to a semi-protected page, for example, would add the {{editsemiprotected}} template, followed by their request, to the Talk page. The {{editsemiprotected}}
template expands to a texty notice which includes the instruction, "Replace the {{editsemiprotected}}
template with {{tlf|editsemiprotected}}
when the request has been accepted or rejected." An empowered editor acting on the request would then change the template per this instruction.
The desired effect is to replace the {{editsemiprotected}}
template (with its big, eye-catching box of information) by the name of the template, merely showing that the template had been there, and acted upon. The use of the {{tlf}}
template means that the template should appear in a normal, proportional font-face, as in "{{editsemiprotected}}".
Documentation
[编辑源代码]Functional details
[编辑源代码]- This template takes another template-name and some associated pipe-tricked (numbered) parameters (or 'pass parameters'), and displays them as an 'example demonstration' of how the template-name template could be coded, literally. Its primary use is in instruction and documentation.
- Specifics here???
- Features of
{{tlc}}
,{{tld}}
and{{tlf}}
:- They show a template name and up to eight parameters.
- They also show empty parameters. (See examples below.)
- They prevent line wraps in their output.
Usage
[编辑源代码]{{Tlc|Template|first_parameter|second|third|fourth|...|eighth}}
→ {{Template|first_parameter|second|third|fourth|fifth|sixth|seventh|eighth}}
{{Tld|Template|first_parameter|second|third|fourth|...|eighth}}
→ {{Template|first_parameter|second|third|fourth|fifth|sixth|seventh|eighth}}
{{Tlf|Template|first_parameter|second|third|fourth|...|eighth}}
→ {{Template|first_parameter|second|third|fourth|fifth|sixth|seventh|eighth}}
Examples
[编辑源代码]Note: Wikitables make the <code></code>
tags transparent, unfortunately, so the "code colouring
" is missing in these examples.
Code | Result | Comment |
---|---|---|
{{tlc}} | {{tlc|...}} | Shows its own syntax. |
{{tlc|name}} | {{name}} | |
{{tlc|name|one}} | {{name|one}} | |
{{tlc|name|one|two}} | {{name|one|two}} | |
{{tlc|name|a|b|c|d|e|f|g|h|i|j}} | {{name|a|b|c|d|e|f|g|h}} | Shows up to eight parameters. The rest are dropped. |
{{tlc|name|||three|four}} | {{name|||three|four}} | Also shows empty parameters. |
{{tlc|name|||three||}} | {{name|||three||}} | Even shows empty parameters that come in the end. |
{{tlc|name|one=a|two=b}} | {{name}} | The use of equal signs is a problem, but there is a fix; see next row. |
{{tlc|name|one=a|two{{=}}b}} | {{name|one=a|two=b}} | Use {{=}} in place of an equal sign, so that it gets rendered properly.
|
{{tlc|name|{{IPA|/tʃ/}}|two}} | {{tlc|name|/tʃ/|two}} | Nested template calls also cause problems ... |
{{tlc|name|{{tlf|IPA|/tʃ/}}|two}} | {{tlc|name|{{IPA|/tʃ/}}|two}} | ... but there are ways to get around this issue, also. |
{{tlc|name|{{((}}IPA{{!}}/tʃ/{{))}}|two}} | {{tlc|name|{{IPA|/tʃ/}}|two}} | ... another way to do the same thing, using {{((}} , {{!}} and {{))}} to insert literal {{ , | and }} , respectively.
|
An alternative to using constructs such as {{=}}
and {{tlf|...}}
to prevent characters from getting interpreted syntactically is to use <code><nowiki>...</nowiki></code>
, which will prevent all characters from being interpreted. For example, in place of
{{tlc|name|one{{=}}{{tlf|IPA|/tʃ/}}|two}}
you can use
<code><nowiki>{{name|one={{IPA|/tʃ/}}|two}}</nowiki></code>
Both render as
{{name|one={{IPA|/tʃ/}}|two}}
If a vertical display with parameters on their own lines is desired, this can also be laid out manually in this manner, or more rapidly done with <pre>...</pre>
.
Here are the codes to emulate {{tlf}}
, {{tld}}
and {{tlc}}
using <nowiki>
:
Using templates: | Using <nowiki> : |
Rendered result: |
---|---|---|
{{tlf|name|one{{=}}a|two{{=}}b}}
|
<nowiki>{{name|one=a|two=b}}</nowiki>
|
{{name|one=a|two=b}} |
{{tld|name|one{{=}}a|two{{=}}b}}
|
<tt><nowiki>{{name|one=a|two=b}}</nowiki></tt>
|
{{name|one=a|two=b}} |
{{tlc|name|one{{=}}a|two{{=}}b}}
|
<code><nowiki>{{name|one=a|two=b}}</nowiki></code>
|
{{name|one=a|two=b}}
|
See also
[编辑源代码]連結形式 → | 含有連結 | 不含連結 | 含有連結並添加subst | 含有連結,連結包含括號 | 含有連結,顯示其他文字 | 含有連結,第一個| 替換成:
| |
---|---|---|---|---|---|---|---|
文字樣式 ↓ | {{tlg}} 選項1
|
— | nolink=yes
|
subst=yes
|
braceinside=yes
|
alttext=FOO
|
不適用 |
正常 | — | {{tl}} · {{tlp}} 2 · {{tlg}} 1, 2
|
{{tlf}} 2 · {{tnull}}
|
{{tls}} · {{tlsp}}
|
{{tn}}
|
{{tla}}
|
|
代碼 code
|
code=yes ortt=yes
|
{{tlx}}
|
{{tlc}} 2 · {{tld}}
|
{{tlxs}}
|
{{tlxm}}
| ||
粗體 | bold=yes
|
{{tlb}}
|
|||||
粗體代碼 code
|
bold=yes|code=yes
|
{{tlxb}}
| |||||
斜體代碼 code
|
italic=yes|code=yes
|
{{tlxi}}
|
- 各顯示樣式的比較
{{tlf|Milford Haven Line|弘安源氏論議}}
→ {{Milford Haven Line|弘安源氏論議}}{{tld|Milford Haven Line|弘安源氏論議}}
→{{Milford Haven Line|弘安源氏論議}}
{{tlc|Milford Haven Line|弘安源氏論議}}
→{{Milford Haven Line|弘安源氏論議}}
- 添加參數
{{para|name|{{var|value}}}}
→|name=value
{{para|name|{{varserif|value}}}}
→|name=value
{{tlx|Milford Haven Line|參數1{{=}}賦值1}}
→{{Milford Haven Line|參數1=賦值1}}
參見
[编辑源代码]上述文档嵌入自Template:Tlc/doc。 (编辑 | 历史) 编者可以在本模板的沙盒 (创建 | 镜像)和测试样例 (创建)页面进行实验。 本模板的子页面。 |