Template:Authorbox/Doc: Difference between revisions
From questden
Jump to navigationJump to search
(updating doc to match change to template) |
No edit summary |
||
Line 12: | Line 12: | ||
This template also makes it so author boxes now support the <code>authoralias</code> parameter! | This template also makes it so author boxes now support the <code>authoralias</code> parameter! | ||
== | ==Examples== | ||
===Creating an authorbox=== | |||
{| style="margin: auto; background-color:#F2F2F2; width:95%; border-collapse:collapse; border:1px solid #BBB" cellpadding="2" | {| style="margin: auto; background-color:#F2F2F2; width:95%; border-collapse:collapse; border:1px solid #BBB" cellpadding="2" | ||
Line 47: | Line 48: | ||
|} | |} | ||
|} | |} | ||
When you edit the author box in the future, the first line of code will have changed to: | When you edit the author box in the future, the first line of code will have changed to: | ||
Line 54: | Line 54: | ||
This is expected behavior, and you don't need to mess with it. | This is expected behavior, and you don't need to mess with it. | ||
===Calling an authorbox=== | |||
{| style="margin: auto; background-color:#F2F2F2; width:95%; border-collapse:collapse; border:1px solid #BBB" cellpadding="2" | |||
! style="border:1px solid #BBB" | Code | |||
! style="border:1px solid #BBB" | Output | |||
|- valign="top" style="background-color:#FFFFFF" | |||
| style="text-align:left; width: 50%; border:1px solid #BBB" | | |||
<nowiki>{{NAME}}</nowiki> | |||
| style="border:1px solid #BBB" | | |||
{{authorbox|author=NAME|authoralias={{{authoralias|}}}}} | |||
'''TGchan:''' | |||
[[Example Quest 1]] | | |||
[[Example Quest 2]] | | |||
[[Example Quest 3]] | |||
|} | |||
|- valign="top" style="background-color:#FFFFFF" | |||
| style="text-align:left; width: 50%; border:1px solid #BBB" | | |||
<nowiki>{{NAME|authoralias=Alternate Name}}</nowiki> | |||
| style="border:1px solid #BBB" | | |||
{{authorbox|author=NAME|authoralias={{{authoralias|Alternate Name}}}}} | |||
'''TGchan:''' | |||
[[Example Quest 1]] | | |||
[[Example Quest 2]] | | |||
[[Example Quest 3]] | |||
|} | |||
|} |
Revision as of 21:55, 13 February 2017
This is a template documentation page. It is transcluded into place. |
A template for making authorboxes. It replaces this header you used to have to copy-paste into every new one you made:
{| width="70%" style="text-align:left; clear:both; background-color: #F9F9F9; border:1px solid #AAAAAA; border-spacing: 7px; border-collapse: separate;" align=center |- style="background:#ccccff" align="center" width="95%" | style="font-size:12px" | '''Quests by [[NAME]]''' |- | style="font-size:11px" |
Just type {{subst:makebox}}
, add your links, and close the table with |}
.
This template also makes it so author boxes now support the authoralias
parameter!
Examples
Creating an authorbox
Code | Output | |||
---|---|---|---|---|
Template:NAME{{subst:makebox}} '''TGchan:''' [[Example Quest 1]] | [[Example Quest 2]] | [[Example Quest 3]] |} <noinclude>[[Category:Author Boxes]]</noinclude> |
Template:NAME
|
When you edit the author box in the future, the first line of code will have changed to:
{{authorbox|author=NAME|authoralias={{{authoralias|}}}}}
.
This is expected behavior, and you don't need to mess with it.
Calling an authorbox
Code | Output | ||
---|---|---|---|
{{NAME}} |
| ||
{{NAME|authoralias=Alternate Name}} |
|