From WikiChip
Editing WikiChip:styling

Warning: You are not logged in. Your IP address will be publicly visible if you make any edits. If you log in or create an account, your edits will be attributed to your username, along with other benefits.

The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then save the changes below to finish undoing the edit.

This page supports semantic in-text annotations (e.g. "[[Is specified as::World Heritage Site]]") to build structured and queryable content provided by Semantic MediaWiki. For a comprehensive description on how to use annotations or the #ask parser function, please have a look at the getting started, in-text annotation, or inline queries help pages.

Latest revision Your text
Line 1: Line 1:
 
This page documents some of the styling that has been added to WikiChip for various purposes:
 
This page documents some of the styling that has been added to WikiChip for various purposes:
 
== Templates/Warning ==
 
* {{template|unknown features}} - Preliminary Data '''for a chip'''
 
* {{template|future information}} - Preliminary Data '''for an article'''
 
* {{template|leaked info}} - Chip articles that rely on leaked info/could be fake/wrong
 
* {{template|expand list}}
 
* {{template|expand section}}
 
* {{template|empty section}}
 
 
== Inc/Dec ==
 
* {{^|inc}} - <nowiki>{{^|inc}}</nowiki>
 
* {{^|dec}} - <nowiki>{{^|dec}}</nowiki>
 
* {{^}} - <nowiki>{{^}}</nowiki>
 
  
 
== Multi-Columns ==
 
== Multi-Columns ==
Line 46: Line 33:
 
We have a {{template|collist}} template which wraps this class for you.
 
We have a {{template|collist}} template which wraps this class for you.
  
== Tables ==
+
== Table Text alignment ==
=== Table Text alignment ===
 
 
In order to alight an entire column of a table, we have <code>tl##</code>, <code>tc##</code>, and <code>tr##</code> classes for (left, center, and right respectively) where <code>##</code> is the column's number.
 
In order to alight an entire column of a table, we have <code>tl##</code>, <code>tc##</code>, and <code>tr##</code> classes for (left, center, and right respectively) where <code>##</code> is the column's number.
  
Line 60: Line 46:
 
<tr><th>AA</th><th>B</th><th>C</th><th>DD</th>
 
<tr><th>AA</th><th>B</th><th>C</th><th>DD</th>
 
</table>
 
</table>
=== Yes/No/Blank ===
 
For Yes/No, use {{template|tchk}}, for blank use {{template|tblnk}}:
 
 
{|
 
|
 
<pre>
 
{| class="wikitable"
 
! Foo !! Bar !! Baz
 
|-
 
| A || {{tchk|yes}} || {{tchk|no}}
 
|-
 
| B || {{tchk|no}} || {{tchk|yes}} || {{tblnk}} || {{tblnk}} || {{tchk|yes}}
 
|-
 
| C || {{tchk|no|nah}} || {{tchk|yes|Yeh}}
 
|}
 
</pre>
 
|
 
{| class="wikitable"
 
! Foo !! Bar !! Baz
 
|-
 
| A || {{tchk|yes}} || {{tchk|no}}
 
|-
 
| B || {{tchk|no}} || {{tchk|yes}} || {{tblnk}} || {{tblnk}} || {{tchk|yes}}
 
|-
 
| C || {{tchk|no|nah}} || {{tchk|yes|Yeh}}
 
|}
 
|}
 
 
== Comparison Table ==
 
Our comparison tables have undergone a good half-dozen iterations before getting to where it is today. There's no problem with the older iterations, but they are outdated and should eventually be replaced with the new style. Below is the general style:
 
 
Note 1: This table is rather complex because it generates a scrollable table. That is, when adding a lot of columns or viewed on a smaller screen, instead of overflowing outside of the page, the table will have a scroll bar that floats with the table (up/down).
 
 
Note 2: Please keep the comment about data being generate automatically. This is to prevent users from attempting to modify the table to add missing data and instead point them to [[WikiChip:wanted_chips]] where they can add the missing entry. Without this comment random visitors will attempt to add a missing value manually by adding a <code><tr></tr></code> tag inside the table.
 
 
<pre>
 
<!-- NOTE:
 
          This table is generated automatically from the data in the actual articles.
 
          If a microprocessor is missing from the list, an appropriate article for it needs to be
 
          created and tagged accordingly.
 
 
          Missing a chip? please dump its name here: https://en.wikichip.org/wiki/WikiChip:wanted_chips
 
-->
 
{{comp table start}}
 
<table class="comptable sortable tc4">
 
{{comp table header|main|5:List of Skylake-based Processors}}
 
{{comp table header|main|5:Main processor}}
 
{{comp table header|cols|Price|Launched|Cores|%Frequency}}
 
{{#ask: [[Category:microprocessor models by intel]] [[microarchitecture::Skylake]]
 
|?full page name
 
|?model number
 
|?release price
 
|?first launched
 
|?core count
 
|?base frequency#GHz
 
|format=template
 
|template=proc table 3
 
|userparam=6
 
|mainlabel=-
 
}}
 
{{comp table count|ask=[[Category:microprocessor models by intel]] [[microarchitecture::Skylake]]}}
 
</table>
 
{{comp table end}}
 
</pre>
 
 
Which will generate the following table:
 
 
{{comp table start}}
 
<table class="comptable sortable tc4">
 
{{comp table header|main|5:List of Skylake-based Processors}}
 
{{comp table header|main|5:Main processor}}
 
{{comp table header|cols|Price|Launched|Cores|%Frequency}}
 
{{#ask: [[Category:microprocessor models by intel]] [[microarchitecture::Skylake]]
 
|?full page name
 
|?model number
 
|?release price
 
|?first launched
 
|?core count
 
|?base frequency#GHz
 
|format=template
 
|template=proc table 3
 
|userparam=6
 
|mainlabel=-
 
|limit=2
 
|searchlabel=-
 
}}
 
{{comp table count|ask=[[Category:microprocessor models by intel]] [[microarchitecture::Skylake]]}}
 
</table>
 
{{comp table end}}
 
 
Note that "5:Main processor" just means that the cell "Main processor" will span 5 columns. The "%" in "%Frequency" means the column should be treated as a number when sorting. This is important for things such as frequency/TDP/memory because otherwise the sorting feature will assume you're sorting text and will sort it alphanumerically instead (e.g. "1 GHz, 12 GHz, 2 GHz, 21 GHz" instead of "1 GHz, 2 GHz, 12 GHz, 21 GHz). Finally, the "tc4" are used as described in this article earlier to center the column.
 
 
The "userparam=6" parameter needs to be adjusted to the number of columns in the table. You can also specify something like "userparam=6:5" which will mean "6" columns with columns starting at "5" (i.e., column "5" and "6") will display a checks/exes (i.e., true/false).
 

Please note that all contributions to WikiChip may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see WikiChip:Copyrights for details). Do not submit copyrighted work without permission!

Cancel | Editing help (opens in new window)