Template:TOC right/doc: Difference between revisions

From Official Kodi Wiki
Jump to navigation Jump to search
m (Added interwikis)
(rewrote major parts of documentation)
Line 21: Line 21:
== Usage ==
== Usage ==


Insert <code>&#123;&#123;{{BASEPAGENAME}}&#125;&#125;</code> at the point in the article where you want the top of the Table of Contents box to appear. Use with {{tl|-}}, {{tl|clearleft}}, or {{tl|clearright}} to prevent images coalitions.  
Insert <code>&#123;&#123;{{BASEPAGENAME}}&#125;&#125;</code> at the point in the article where you want the top of the Table of Contents box to appear. Use with {{tl|-}} or {{tl|clear}} to prevent coalition with text or use {{tl|clearleft}} or {{tl|clearright}} to prevent images coalitions.  


== Parameters (optional) ==
== Parameters (optional) ==
Line 29: Line 29:
;width: Set the CSS width.
;width: Set the CSS width.


;limit:  Allow limiting of which header levels are shown in a TOC; <code>limit=3</code>, for instance, will limit to showing ==headings== and ===headings=== but no further (as long as there are no =headings= on the page, which there shouldn't be according to the MOS).
;limit:  Limits the depth of subheadings shown.  For instance using <code>limit=4</code> will hide the fourth level and deeper subheadings in the hierarchy.  And <code>limit=2</code> will hide all subheadings leaving only the main headings.  This is implemented as a CSS class in the [[MediaWiki:Common.css]].


== Cautions ==
== Cautions ==
After placing these templates, logoff and view the page in the default skin to assure the appearance to our readers is sound.
Usage of this template remains controversial with many editors and readers as it breaks consistency with the standardized appearance of the site.  When using this template logout and check that it appears correctly with the default skin in Internet Explorer and a [[Acid2]] compatible browser (or Firefox).  Consult the following pages for placement elucidation [[Help:Section#Floating the TOC]] and [[Wikipedia:How to fix bunched-up edit links]]


This template should not be used when the result is to place the TOC in a visually poor location. A TOC that crosses a section division is probably a poor idea, if that can be avoided.
* Avoid placing the TOC in a visually poor location. Crossing a section division is probably a poor idea.
 
* If the TOC is floated left of a bulleted list, the bullets will be hidden.
Unless the section in which the {{tl|{{BASEPAGENAME}}}} is placed is long enough, the result may well be undesirable.  Note particularly that if the TOC is floated left of a bulleted list, the bullets will be hidden.
 
Do not use this template to just force word warp around the TOC, as this is inappropriate method of achieving this.  Instead add a CSS class to your monobook.css file which will apply site wide. <!-- Discuss on the talk page if you disagree! -->
 
It should only be used in cases where the TOC gets in the way of other content or is detrimental to the layout of the page; it should ''not'' simply be used for aesthetics since it tampers with the standard appearance of articles. See [[Help:Section#Floating the TOC]] for further guidelines.


== Site wide floating of TOC code ==
== Site wide floating of TOC code ==

Revision as of 02:51, 14 May 2007

Edit-paste.svg
This is the template documentation page for Template:TOCright.

This page is not necessarily intended to be viewed directly. If it uses variables, some links may appear broken. Do not replace these variables with hardcoded page names or URLs.


  1. {{TOCright}} forces the auto-generated Table of Contents for an article to appear in a table that is floated to the right side of the page (as seen right), in order to improve article layout.
  2. {{TOCnestright}} Operates similarly, but is designed to use early in introduction or second sections on the many pages having a lot of images or wikitable elements such as infoboxes dominating the right side of such pages. TOCnestright will drift up against such constructs allowing text wrapping above, left and below preventing discordantly ugly page breaks and large excessive whitespace gaps on the page as given by the default TOC.

Usage

Insert {{TOC right}} at the point in the article where you want the top of the Table of Contents box to appear. Use with {{-}} or {{clear}} to prevent coalition with text or use {{clearleft}} or {{clearright}} to prevent images coalitions.

Parameters (optional)

clear
Sets the CSS clear property, which forces this float underneath the side specified with this attribute. So, clear=right (which is the default) will place the element after all the right floating elements before it. Options are left, right, both, or none.
width
Set the CSS width.
limit
Limits the depth of subheadings shown. For instance using limit=4 will hide the fourth level and deeper subheadings in the hierarchy. And limit=2 will hide all subheadings leaving only the main headings. This is implemented as a CSS class in the MediaWiki:Common.css.

Cautions

Usage of this template remains controversial with many editors and readers as it breaks consistency with the standardized appearance of the site. When using this template logout and check that it appears correctly with the default skin in Internet Explorer and a Acid2 compatible browser (or Firefox). Consult the following pages for placement elucidation Help:Section#Floating the TOC and Wikipedia:How to fix bunched-up edit links

  • Avoid placing the TOC in a visually poor location. Crossing a section division is probably a poor idea.
  • If the TOC is floated left of a bulleted list, the bullets will be hidden.

Site wide floating of TOC code

Add to your userpage/monobook.css (if your using the default monobook skin)

#bodyContent #toc {
 float: right;
 clear: right;
 margin: 0.3em;
}

A more advanced (non IE users) using the CSS child selector to prevent existing TOC layout scheme from causing problems and allowing the TOC to float next to existing images.

#bodyContent > #toc, #wikiPreview > #toc {
 float: right;
 clear: none;
 padding: 0.2em;
 margin: 0.3em;
}

See also