Шаблон:Markup/doc
Этот шаблон содержит незавершённый перевод с английского языка. Вы можете помочь проекту, закончив перевод.
|
Этот шаблон используется, чтобы представить разметку или код рядом с результатом его применения.
Использование
правитьКаждая ячейка в первой колонке ("Markup") использует <pre>
, to retain newlines and spaces but styled to allow content to wrap within it. It is usually desirable to escape the content of these cells so that the markup is displayed by wrapping the markup in <nowiki>
. It is technically not possible to add this feature to the template.
Каждая ячейка во второй колонке ("Renders as") скопирована из соответствующей ячейки "разметки" перед ней. Есть случаи, когда это может отличаться:
- Если первая строка содержит викиразметку, которая должна начать новую строку.
- Заголовки разметки, такой как
==
покажет странице оглавления; will show in the page table of contents; use {{fake heading}}. - Some templates will place the page in a maintenance category, which is usually undesired:
- Instead of {{citation needed}}, use {{fake citation needed}}.
- Some templates may have error checking that places the page in a maintenance category. Suppress the category as possible:
- Шаблон:Cs1 templates can suppress the maintenance category by setting
|template doc demo=true
.
- Шаблон:Cs1 templates can suppress the maintenance category by setting
Ограничение
правитьЕсли вы не поместите содержимое ячейки разметки в <nowiki>
, then any template markup will not be escaped, it will be expanded.
This example shows the markup for {{tl|tag}}:
Renders as | Expected rendering |
---|---|
<span class="wp-templatelink">{{</span><span data-navboxnavigation-link="0">[[:Template:tag|tag]]</span><span class="wp-templatelink">}}</span> |
{{tl|tag}}
|
HTML entities
правитьHTML entities are parsed in the markup cell:
Nowikied markup shows as | Expected markup |
---|---|
– |
–
|
To work around this, replace the &
with &
thus &nbsp;
will show as
List and indent markup
правитьIf the first line includes wikimarkup that must start on a new line such as #, * or ; then use <nowiki />
:
Разметка | Выполнит как |
---|---|
# Item 1 # Item 2 # Item 3 # Item 4 |
|
Разметка | Выполнит как |
---|---|
<nowiki /> # Item 1 # Item 2 # Item 3 # Item 4 |
|
Examples
правитьSimple
правитьРазметка | Выполнит как |
---|---|
'''Bold text''' |
Bold text |
''Italic text'' |
Italic text
|
More complex
правитьNote that Шаблон:Tl2's second argument here uses Шаблон:Tl2 and Шаблон:Tl2.
Разметка | Выполнит как |
---|---|
The quick brown fox jumps over the lazy dog.{{#tag:ref|A footnote.<ref>A reference for the footnote.</ref>|group=nb}} The cow jumped over the moon.{{fact}} == Notes == {{reflist|group=nb}} == References == {{reflist}} |
The quick brown fox jumps over the lazy dog.[nb 1] The cow jumped over the moon.Шаблон:Fake citation needed
|
Multiple rows
правитьРазметка | Выполнит как |
---|---|
The quick brown fox jumps over the lazy dog. |
The quick brown fox jumps over the lazy dog. |
The quick brown fox jumps over the lazy dog. |
The quick brown fox jumps over the lazy dog. |
The quick brown fox jumps over the lazy dog. |
The quick brown fox jumps over the lazy dog. |
The quick brown fox jumps over the lazy dog. |
The quick brown fox jumps over the lazy dog. |
The quick brown fox jumps over the lazy dog. |
The quick brown fox jumps over the lazy dog.
|
With title
правитьРазметка | Выполнит как |
---|---|
The quick brown fox jumps over the lazy dog. |
The quick brown fox jumps over the lazy dog.
|
Showing rendered HTML
правитьWhen a template is enclosed within {{code}}, it shows the rendered HTML:
Разметка | Выполнит как |
---|---|
{{cite book |last=White |first=T. H. |title=The Book of Merlyn |year=1977}} |
White, T. H. The Book of Merlyn. — 1977. |
{{code|{{cite book |last=White |first=T. H. |title=The Book of Merlyn |year=1977}}}} |
White, T. H. The Book of Merlyn. — 1977. |
См. также
править- {{Markup2}} for bulleted and indented markup.
- {{Markupv}} for the vertical presentation (above/below) of markup/code and its output.