Manual Of Style: Difference between revisions

From OSDev.wiki
Jump to navigation Jump to search
[unchecked revision][unchecked revision]
Content added Content deleted
m (categorizing in Wiki administration)
Line 1: Line 1:
#REDIRECT [[OSDev Wiki:Manual Of Style]]
Articles on the OSDev Wiki start with a short intruction of the subject, usually with the first mention of the subject '''boldfaced'''.

== Tables ==
Tables should be created like this:

Code like this:
<pre>
{| {{wikitable}}
! Header 1
! Header 2
|-
| Value 1||Othervalue 1.1
|-
| Value 2||Othervalue 2.1
|-
| rowspan="2" | Value 3||Othervalue 3.1
|-
| Othervalue 3.2
|}
</pre>
Creates a table like this:
{| {{wikitable}}
! Header 1
! Header 2
|-
| Value 1||Othervalue 1.1
|-
| Value 2||Othervalue 2.1
|-
| rowspan="2" | Value 3||Othervalue 3.1
|-
| Othervalue 3.2
|}

== Notes ==
To create a note in the text or in a table, you may use the following markup:
<pre>
<span style="vertical-align: super">[[#Note1|1]]</span>
</pre>
After which you use the following to create the text associated with the note:
<pre>
<small id="Note1">Note description</small>
</pre>

== Page Layout ==
Pages which have references to other articles, wikipedia pages, threads on the forum or external links, have a ''See Also'' level 2 header, followed by the appropriate categories. Like this:

== See Also ==
=== Articles ===
* [[Main Page]]

=== Threads ===
* [http://forum.osdev.org/viewtopic.php?f=1&t=1897 Some thread on the forum]<br />With not much useful information.

=== External Links ===
* [[Wikipedia:Style guide|Style guide]] on Wikipedia
* [http://www.osdever.net/ Other OS-dev site] on osdever.net

[[Category:Wiki administration]]

Revision as of 19:25, 4 November 2008