Extension:TopicTags/Template-Span
Usage
editInsert the following to a page
{{Span|MyClassname|MyIDname}}
This will render as:
<span class="MyClassname" id="MyIDname">
Explanation
editopen an HTML span tag, applying parameter 1 as classname and parameter 2 as ID
Installation
edit- Create page
WIKI-URL/Template:Span
- Paste in the following:
<span class={{{1}}} id={{{2}}}>{{#if: {{{3}}}||</span>}}<noinclude> NOTE: If call contains trailing pipe, then span will be closed: {{Span|MyClass|MyID|}} -> <span class="MyClass" id="MyID"></span> Else, span will be left open {{Span|MyClass|MyID}} -> <span class="MyClass" id="MyID"> </noinclude>