Template:Editlink: Difference between revisions

From AddOn Studio
Jump to navigation Jump to search
No edit summary
No edit summary
 
(13 intermediate revisions by 2 users not shown)
Line 1: Line 1:
;Description
Puts a small "e" edit link in a subscript-like position in a table cell. Intended for transcluded tables, but theoretically could be used for other things.
:Puts a small "e" edit link in a subscript-like position in a table cell. Intended for transcluded tables, but theoretically could be used for other things.


;Syntax
;Usage
:<code>{{t|Tableeditlink|page to edit}}</code>
* 1 - internal link page, like 'Template:Somenav'
* 2 - (optional) char or text to use as link. Default is 'e'
* color - (optional) text color link. Default is regular link color
* float - (optional) Default is 'right'. both|right|left|none
* tight - (optional) render the "e" that fits better in tight space, doesn't disturb flow
* style - (optional) additional style, like margins or as necessary


;Parameters
;Examples
* <code>1=</code> Internal link page (like <tt>Template:Somenav</tt>)
* <code>color=</code> ''Optional'' text color for "e"
* <code>float=</code> ''Optional'' float (default: right)
 
;Example
<pre>
<pre>
{| class="darktable"
{| class="darktable" width="30%"
|-
|-
! Table with edit link {{tableeditlink|Template:Tableeditlink}}
! Table with edit link {{{{PAGENAME}}|{{PAGENAME}}}}
|-
|-
| Cell 1
| Cell 1
|-
| Cell 2
|}
|}
</pre>
</pre>


;Output
{| class="darktable" width="30%"
{| class="darktable"
|-
|-
! Table with edit link {{tableeditlink|Template:Tableeditlink}}
! style="position:relative" | Table with edit link {{{{PAGENAME}}|{{PAGENAME}}}}
|-
|-
| Cell 1
| Cell 1
|-
| Cell 2
|}
|}


;See also
<pre>
* {{t|sectioneditlink}}
:<div style="position:relative">Some kind of heading {{{{PAGENAME}}|{{PAGENAME}}}}</div>
* {{t|tabledisplaylink}}
:I like unicorn.
:I like princess.
</pre>


:<div style="position:relative">Some kind of heading {{{{PAGENAME}}|{{PAGENAME}}}}</div>
:I like unicorn.
:I like princess.


[[Category:Inline templates]]
----
----
;Template
;Template
<onlyinclude><span style="float:{{{float|right}}}; font-size:75%; font-weight:normal; margin-bottom:-6px; margin-top:6px;">[{{fullurl:{{{1|{{FULLPAGENAME}}}}}|action=edit}} {{#if:{{{color|}}}|<span style="color:{{{color|}}};">}}{{{2|e}}}{{#if:{{{color|}}}|</span>}}]</span></onlyinclude>
<onlyinclude><includeonly><!--
 
--><div class="editlink" style="{{{style|}}}">[{{fullurl:{{{1|{{FULLPAGENAME}}}}}|action=edit}} <span style="color:{{{color|#56a}}}">e</span>]</div><!--
 
<span class="{{#if:{{{tight|}}}|editlink}}" style="{{#if:{{{tight|}}}||font-size:.83em; float:{{{float|right}}}; margin:.2em 0 -2em 0;}} {{{style|}}}">[{{fullurl:{{{1|{{FULLPAGENAME}}}}}|action=edit}} {{#if:{{{color|}}}|<span style="color:{{{color|}}};">}}{{{2|e}}}{{#if:{{{color|}}}|</span>}}]</span>


[[Category:Inline templates]]
--></includeonly></onlyinclude>

Latest revision as of 17:32, 5 August 2023

Puts a small "e" edit link in a subscript-like position in a table cell. Intended for transcluded tables, but theoretically could be used for other things.

Usage
  • 1 - internal link page, like 'Template:Somenav'
  • 2 - (optional) char or text to use as link. Default is 'e'
  • color - (optional) text color link. Default is regular link color
  • float - (optional) Default is 'right'. both|right|left|none
  • tight - (optional) render the "e" that fits better in tight space, doesn't disturb flow
  • style - (optional) additional style, like margins or as necessary
Examples
{| class="darktable" width="30%"
|-
! Table with edit link {{{{PAGENAME}}|{{PAGENAME}}}}
|-
| Cell 1
|}
Table with edit link
Cell 1
:<div style="position:relative">Some kind of heading {{{{PAGENAME}}|{{PAGENAME}}}}</div>
:I like unicorn.
:I like princess.
Some kind of heading
I like unicorn.
I like princess.

Template