Шаблон:Markupv/doc

Материал из Викиновостей, свободного источника новостей

Использование[править]

Этот шаблон используется, чтобы представить разметку или код в вертикальном формате.

Код шаблона "markupv"
Код
<includeonly>{| style="table-layout: fixed; {{{width|width: 90%}}}; border-width: medium; margin-left: {{{margin|0em}}};{{{style|}}}"
{{#if: {{{title|{{{t|}}}}}} | {{!}}+ '''{{{title|{{{t|}}}}}}'''}}
|-
| style="width:10%; border-width: 1px; padding: 5px; border-style: solid solid none solid; border-color: #ddd; vertical-align:text-top;" | Markup
| style="border-width: 1px; padding: 5px; border-style: solid solid none none; border-color: #ddd; vertical-align:text-top;" | {{#tag:pre|{{{markup|{{{m|Markup}}}}}}|style="border: none; margin:0; padding: 0; word-wrap: break-word; white-space: -moz-pre-wrap; white-space: -o-pre-wrap; white-space: -pre-wrap; white-space: pre-wrap"}}
|-
| style="width:10%; border-width: 1px; padding: 5px; border-style: solid; border-color: #ddd; vertical-align:text-top;" | Renders as
| style="border-width: 1px; padding: 5px; border-style: solid solid solid none; border-color: #ddd; vertical-align:text-top;" | {{{renders|{{{r|Renders}}}}}}
|}</includeonly><noinclude>{{doc}}</noinclude>
Вид Параметры:
  • markup или m: Содержимое ячейки разметки Markup
  • renders или r: Содержимое ячейки Renders as
  • title или t: Заголовок таблицы (по умолчанию без заголовка)
  • margin: Set table left margin in em
  • width: Ширина таблицы (по умолчанию 90%)
  • style: Дополнительный стиль CSS


The Markup cell is pre-formatted with <pre> to retain newlines and spaces, but styled to allow content to wrap within the cell. It is usually desirable to escape the content of the Markup cell so that the markup is displayed by wrapping the markup in <nowiki>. It is technically not possible to add this feature to the template.

In the Renders as cell, the content is usually the unescaped markup copied from the Markup cell. There are instances where this may differ:

  • If the first line includes wikimarkup that must start on a new line such as #, * or ; then use <nowiki /> before the first line.
  • Header markup such as == will show in the page table of contents; use {{fake heading}}.
  • When using {{reflist}} with no other parameters, use {{reflist|close=1}} to ensure that the reference list is closed.
  • Some templates will place the page in a maintenance category, which is usually undesired:
  • 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.

Пример[править]

В примере ниже показано, как можно использовать <score></score> в {{markupv}}:

{{markupv|title=Пример:
|markup=<score>\relative c' { c( b~ c b c b c b c~ c)}</score>
|renders=<score>\relative c' { c( b~ c b c b c b c~ c)}</score>
}}

It generates:

Example:
Код
<score>\relative c' { c( b~ c b c b c b c~ c)}</score>
Вид
\relative c' { c( b~ c b c b c b c~ c)}

Ограничения[править]

If you don't wrap the content of the markup cell in <nowiki>, then any template markup will not be escaped, it will be expanded.

This example shows the markup for {{tl|tag}}:

Код
Markup
Вид Renders

HTML entities are parsed in the markup cell

Код
Markup
Вид Renders

To work around this, replace the & with &amp; thus &amp;nbsp; will show as &nbsp;

Примеры[править]

Simple examples:

Код
Markup
Вид Renders

Complex example: Note that the second argument to Шаблон:Tl2 uses Шаблон:Tl2 and Шаблон:Tl2.

Код
Markup
Вид Renders

With title:

Foxes and dogs
Код
Markup
Вид Renders

When a template is enclosed within {{code}}, it shows the rendered HTML:

Код
Markup
Вид Renders

См. также[править]

  • {{markup}}: side by side markup
  • {{markup2}}: bulleted and indented markup
  • {{markupv}}: above and below markup