(새 문서: <code class="nowrap" style="{{#ifeq:{{{스타일|{{{style|}}}}}}|plain|border:none;background:transparent;|{{{스타일|{{{style|}}}}}}}}"><!-- Opening tag -->{{#switch:{{{2|pair}}} |c|close = |s|single |o|open |p|pair = <{{{1|tag}}}{{#if:{{{params|}}}| {{{params}}}}} }}<!-- Content between tags -->{{#switch:{{{2|pair}}} |c|close = {{{content|}}} |s|single = /> |o|open = >{{{content|}}} |p|pair = {{#ifeq:{{{1|tag}}}|!--||>}}{{{내용|{...) |
(차이 없음)
|
2023년 6월 12일 (월) 02:56 기준 최신판
<tag>...</tag>
XML이나 HTML 형식의 태그를 나타내주는 틀입니다.
사용법[원본 편집]
{{태그|태그이름 [|유형] [|content=본문] [|attribs=속성 및 값]}}
예제[원본 편집]
| 마크업 | 결과 |
|---|---|
{{tag|ref}}
|
<ref>...</ref> |
{{tag|ref|content=}}
|
<ref></ref> |
{{tag|ref|content=hello}}
|
<ref>hello</ref> |
{{tag|font|content=foo}}
|
<font>foo</font> |
{{tag|font|open}}
|
<font> |
{{tag|font|open|content=hello}}
|
<font>hello |
{{tag|span|close|content=hello}}
|
hello</span> |
{{tag|span|pair|content=hello}}
|
<span>hello</span> |
{{tag|ref|open|params=group="note"}}
|
<ref group="note"> |
{{tag|references|single}}
|
<references /> |
{{tag|br|single}}
|
<br /> |
{{tag|!--|content=comment}}
|
<!--comment-->
|