Wikipedia:HTML5
This is an information page. It is not an encyclopedic article, nor one of Wikipedia's policies or guidelines; rather, its purpose is to explain certain aspects of Wikipedia's norms, customs, technicalities, or practices. It may reflect differing levels of consensus and vetting. |
The development of HTML5 is now so far advanced that it was incorporated into the MediaWiki software and has been the default on Wikimedia wikis since September 2012.
This project serves to help editors organize the adaptation of articles and other Wikipedia pages to HTML5. The fifty or so prepared searches reveal the obsolete tags. The edits range from simple to complex, and the numbers from a few fixes anyone can enjoy updating manually, up to many thousands for a run with a Wikipedia:AutoWikiBrowser bot script.
Scope
Implementation of the new HTML5 attributes accepted by MediaWiki software. These include:
- The
data-sort-value
attributes in table cells for sorting. This is associated to the replacement of templates like Sort, Sortname, Number table sorting, and Dts. - Other data attributes.
obsolete in HTML5[2][3] | Replacements |
---|---|
{| align="center"
|- align="center"
| align="center" | …
|
{| class="center" <!-- corresponds to text-align: center, and also margin: auto on inner elements -->
{| class="centered" <!-- corresponds to margin: auto -->
{| style="margin:auto;"
|- style="text-align:center;"
| class="center"
Attention, none of the data is equivalent. The obsolete code centered much more things, however the CSS values apply either to inline or block elements only. In some cases, substantial changes may be necessary to replicate with CSS the appearance which was obtained with the old code. |
align="right"
|
{| class="float-right"
Positioning can be made using |
valign="top"
|
style="vertical-align:top;"
|
<tt>...</tt>
|
<code>...</code>
Depending on the desired semantic, Note: |
{| bgcolor="gray"
|
{| style="background-color:gray;"
|
Obsolete since HTML4[2][5] | Replacements |
<center>...</center>
|
<div class="center">...</div>
Attention, none of the data is equivalent. The obsolete code centered much more things, however the CSS values apply either to inline or block elements only. In some cases, substantial changes may be necessary to replicate with CSS the appearance which was obtained with the old code. |
<strike>...</strike>
|
<s>...</s>
|
<font size="3">...</font>
|
<span style="font-size:125%;">...</span>
Here a percentage makes sense. A simple conversion is not possible as the result depends on the surrounding code and partly also on the browser used. One should simply decide which value is appropriate, often rounded to 10% percentage for the particular application. Note that |
<font color="red">...</font>
|
<span style="color:red;">...</span>
|
<font face="Courier">...</font>
|
<span style="font-family:Courier, monospace;">...</span>
The specification should definitely end with a generic font, usually |
- The following attributes relevant for Wikipedia tables are also considered obsolete in HTML5:
bgcolor
,border
,bordercolor
,cellpadding
,cellspacing
. - The following elements were formerly obsolete in HTML4 and "rehabilitated" in HTML5:
u
ands
[5]
Obsolete elements and attributes
These elements and attributes should no longer be used on Wikipedia pages. See each element or attribute's details for its recommended replacement.
center
Text
For most text, <center>...</center>
can be replaced with {{center}}.
Obsolete | Replacement | Search |
---|---|---|
<center>Content</center>
|
{{center|Content}}
|
Templates
To center templates, check the template documentation as most have a parameter for general styling or specifically for alignment. If the template does not have an alignment parameter, consider adding one.
Searches for templates do not find redirects, but you can alter the query to complete the search for that template's obsolete usage: for each template list its redirects with the "What Links Here" tool, and replace the two occurrences of its template name. Do this for each of its redirects in turn.
Obsolete | Replacement | Search |
---|---|---|
<center> {{ahnentafel}} </center>
|
{{ahnentafel|align=center}}
|
|
<center> {{chart/start}} </center>
|
{{chart/start|align=center}}
|
|
<center> {{CSS image crop}} </center>
|
{{CSS image crop|Location=center}}
|
|
<center> {{family tree/start}} </center>
|
{{family tree/start|align=center}}
|
|
<center> {{gallery}} </center>
|
{{gallery|align=center}}
|
|
<center> {{listen}} </center>
|
{{listen|pos=center}}
|
|
<center> {{location map}} </center>
|
{{location map|float=center}}
|
|
<center> {{wide image}} </center>
|
{{wide image}} (centered by default)
|
|
{{wide image|image|
|
{{wide image|image|align-cap=center|caption}}
|
Parser tags
Some parser tags can use CSS styles:
Obsolete | Replacement | Search |
---|---|---|
<center>
|
<gallery class="center">...</gallery>
|
These parser tags will accept class="center"
|
<categorytree>
|
(search articles) (search all) |
<gallery>
|
(search articles) (search all) | |
<poem> (centers all lines)
|
(search articles) (search all) | |
<pre>
|
(search articles) (search all) | |
<syntaxhighlight>
|
(search articles) (search all) | |
<source>
|
(search articles) (search all) | |
These parser tags do not handle CSS; use {{center}} | <hiero>
|
(search articles) (search all) |
<math>
|
(search articles) (search all) | |
<score>
|
(search articles) (search all) | |
<timeline>
|
(search articles) (search all) | |
<ref>
|
(search articles) (search all) | |
These parser tags use other means | <imagemap> uses a center parameter; see the documentation
|
(search articles) (search all) |
These parser tags default to center alignment | <inputbox>
|
(search articles) (search all) |
These parser tags do not handle CSS and do not need alignment |
|
Tables
To center a table, use CSS styling:
Obsolete | Replacement | Search |
---|---|---|
<center>
|
{| style="margin: 1em auto;"
|
(search articles) |
And likewise to center a cell:
Obsolete | Replacement | Search |
---|---|---|
| <center>Content</center>
|
|style="text-align: center;" | Content
|
(search articles) |
Header cells are centered by default.
Files
Obsolete | Replacement | Search |
---|---|---|
<center>[[File:Image.jpg]]</center>
|
[[File:Image.jpg|center]]
|
(search articles) (search all) |
font
The <font>
element has three attributes with equivalent CSS properties:
Font attribute | CSS |
---|---|
color |
color
|
face |
font-family
|
size |
font-size
|
Obsolete | Replacement | Search |
---|---|---|
<font color="red">Content</font>
|
<span style="color:red;">Content</span> OR {{font color|red|Content}}
|
(search articles)(search all) |
Note that for color names, only the W3C specified basic and extended colors are valid with CSS. <font>
accepts arbitrary strings for color names; CSS does not support these. When converting to CSS, these strings can be replaced either with a sufficiently similar hexadecimal color code or a valid color name that is nearest to their shade. For example:
Obsolete | Replacement |
---|---|
<font color="harlequin">Content</font>
|
<span style="color:#3FFF00;">Content</span> OR <span style="color:chartreuse;">Content</span> OR {{font color|#3FFF00|Content}}
|
Hexadecimal color codes without the #
prefix are valid with <font>
, but #
is mandatory with CSS. Only 3 and 6 digit hex codes are valid in CSS. When 4 and 5 digit codes have to be converted to CSS, they need to be appended with 00 and 0 respectively. For 8 digit hex codes, the last two digits have to be discarded.
Obsolete | Replacement |
---|---|
<font color="#FC045E;">Content</font>
|
<span style="color:#FC045E;">Content</span> OR {{font color|#FC045E|Content}}
|
<font color="FC045E;">Content</font>
|
<span style="color:#FC045E;">Content</span> OR {{font color|#FC045E|Content}}
|
<font color="#FC04;">Content</font>
|
<span style="color:#FC0400;">Content</span> OR {{font color|#FC0400|Content}}
|
<font color="#FC045;">Content</font>
|
<span style="color:#FC0450;">Content</span> OR {{font color|#FC0450|Content}}
|
<font color="#FC045E33;">Content</font>
|
<span style="color:#FC045E;">Content</span> OR {{font color|#FC045E|Content}}
|
Obsolete | Replacement | Search |
---|---|---|
<font face="Times, serif">Content</font>
|
<span style="font-family:Times, serif;">Content</span> OR {{font|text=Content|font=Times, serif}}
|
(search articles)(search all) |
Note that in HTML the value for the size
attribute does not correspond to any CSS value; it only accepts values 1 through 7.[6]
Obsolete | Replacement | Search |
---|---|---|
<font size="1">Content</font> |
<span style="font-size:x-small;">Content</span> OR {{font|text=Content|size=x-small}}
|
(search articles)(search all) |
<font size="2">Content</font> |
<span style="font-size:small;">Content</span> OR {{font|text=Content|size=small}}
| |
<font size="3">Content</font> |
<span style="font-size:medium;">Content</span> OR {{font|text=Content|size=medium}}
| |
<font size="4">Content</font> |
<span style="font-size:large;">Content</span> OR {{font|text=Content|size=large}}
| |
<font size="5">Content</font> |
<span style="font-size:x-large;">Content</span> OR {{font|text=Content|size=x-large}}
| |
<font size="6">Content</font> |
<span style="font-size:xx-large;">Content</span> OR {{font|text=Content|size=xx-large}}
|
The above searches will find all permutations of the three color attributes. For example:
Obsolete | Replacement |
---|---|
<font size="3" color="red" face="times, serif">Content</font>
|
<span style="font-size:medium; color:red; font-family:Times, serif;">Content</span> OR {{font|text=Content|size=medium|font=Times, serif|color=red}}
|
strike
<strike>...</strike>
formats strike-through characters. (search articles) (search all)
- Use
<s>...</s>
for text that is no longer correct, accurate, or relevant. - Use
<del>...</del>
for text that has been deleted or marked for deletion.
tt
<tt>...</tt>
formats text in a fixed-width font. (search articles) (search all)
- Use
{{code}}
or<code>
for source code. - Use
{{kbd}}
or<kbd>
for computer input (it need not represent actual keystrokes) - Use
{{samp}}
or<samp>
for sample output from a program or system (can include directory listings and other matter) - Use
{{var}}
or<var>
for variable names (in code, mathematics, or even syntactic variables in regular writing). - Use
{{mono}}
for monospace-styled text without the semantics of any of the above.
Table attributes
Obsolete table attributes.[7][8]
Obsolete attribute | CSS style on cell style="CODE BELOW" |
CSS style on table style="CODE BELOW" |
Search |
---|---|---|---|
|
|
|
|
bgcolor=#ddd
|
background-color: #ddd;
|
background-color: #ddd;
|
|
border=2
|
border-width: 2px;
|
border-width: 2px;
|
|
cellpadding=2
|
padding: 2px;
|
||
cellspacing=2
|
border-spacing: 2px;
|
||
cellpadding=0 cellspacing=0
|
padding: 0;
|
border-collapse: collapse;
|
|
|
|
||
|
|
|
|
|
See T43917 |
Allowed, obsolete but rarely used table attributes:
frame
: Use CSS for borders. (search articles) (search all)rules
: Use CSS for borders. (search articles) (search all)axis
: Usescope
on the table header. (search articles) (search all)align
on<caption>
. (search articles) (search all)height
: Useheight
orline-height
. (search articles) (search all)
Additionally, these attributes are obsolete on table cells.[9][10]
abbr
: Elaborate content of the cellscope
on table cell:scope
is valid only on table header
There are instances where a table is used to align a template. In many cases the template has an alignment parameter; if not, one should be added.
Markup | Valid |
---|---|
{|align=right |{{navbar|Foo}} |} |
{{navbar|Foo|style=float:right}} |
Other obsolete attributes
clear
on<br />
Obsolete | Replacement | Search |
---|---|---|
<br clear=all />
|
<div style="clear: both;"></div> OR {{clear}}
|
|
<br clear=left />
|
<div style="clear: left;"></div> OR {{clear|left}}
| |
<br clear=right />
|
<div style="clear: right;"></div> OR {{clear|right}}
|
align
on<div>
Obsolete | Replacement | Search |
---|---|---|
<div align=center>...</div>
|
<div style="text-align:center">...</div>
|
|
<div align=left>...</div>
|
<div style="text-align:left">...</div>
| |
<div align=right>...</div>
|
<div style="text-align:right">...</div>
| |
<div align=justify>...</div>
|
<div style="text-align:justify">...</div>
|
Obsolete, allowed but rarely used attributes:
width
on<hr>...</hr>
(search articles) (search all)align
on<h1>...</h1>
through<h6>...</h6>
type
on<li>...</li>
(search articles) (search all)align
on<p>...</p>
(search articles) (search all)width
on<pre>...</pre>
(search articles) (search all)type
on<ul>...</ul>
(search articles) (search all)
Misused elements
cite
Under the previous HTML 4.01 and XHTML 1.1 usage <cite>...</cite>
defined an entire citation. With HTML5, a long-running dispute has erupted:
- The W3C specs preserve the broad usage, though now require that the material contain at least one of: the title of the cited work, its author, a URL to the work, or an abbreviated reference (short citation, as used in Harvard referencing). This is the spec followed by most Web developers.
- The WHATWG specs have limited the element to the title of the work only. This is the spec followed by most browser developers. The only practical implications of WHATWG's break from W3C on this element is that the default browser treatment of the element (to italicize its content) would be applied to more material than the title. However, Wikipedia's site-wide CSS turns off this stylization anyway (per MOS:TITLES, only titles of particular kinds of works should be italicized).
W3C briefly switched to WHATWG's definition in the draft stages of HTML5, but switched back to their own definition in 2012 after protest from the Web developer community. This difference subsequently disappeared when the W3C's version was subsumed into the WHATWG's version in the late 2010s and now the WHATWG's version is the only version in relation to the cite element.
Following common practice (e.g. the use of <cite>
around links to author IDs in blog and forum software, and many other well-deployed uses for the element for more than work titles), Wikipedia is following the W3C HTML5.2 Recommendation, which has superseded HTML 4.01, XHTML 1.1, and all other previous W3C [X]HTML specs. Our citation template system wraps the entire citation in the <cite>...</cite>
element.
Note that uses of <cite>
exist without the closing </cite>
, or incorrectly closed by </span>
; these need to be repaired.
Where used with a Citation Style 1 or Citation Style 2 template, a manually-added <cite>
should be removed as redundant markup:
Obsolete | Replacement | Search |
---|---|---|
<cite>{{cite book |last=Sappol |first=Michael |title=A traffic of dead bodies: anatomy and embodied social identity in nineteenth-century America |publisher=Princeton University Press |location=Princeton, New Jersey |date=2002 |isbn=0-691-05925-X |url=http://books.google.com/books/princeton?id=-9cKRzEx6ywC&printsec=frontcover&dq=A+Traffic+of+Dead+Bodies}}</cite> |
{{cite book |last=Sappol |first=Michael |title=A traffic of dead bodies: anatomy and embodied social identity in nineteenth-century America |publisher=Princeton University Press |location=Princeton, New Jersey |date=2002 |isbn=0-691-05925-X |url=http://books.google.com/books/princeton?id=-9cKRzEx6ywC&printsec=frontcover&dq=A+Traffic+of+Dead+Bodies}} |
Where an anchor id is manually used with a citation template, the id should be moved to the |ref=
parameter. Additionally when removing cite tags with id=CITEREF
please understand that this was a manual reference, and must be updated by removal, then making sure that the all the numbered |last=
parameters such as |last1=
are available, which in turn may require changing any (deprecated) numbered |authorx=
parameter used into a |lastx=
parameter and a matching |firstx=
one. See the example with and without the id=CITEREF...
and |author3=
, below.
Obsolete | Replacement | Search |
---|---|---|
<cite id=Alberti>{{cite book |last=Arnold |first=David L. G. ||editor-first=John |editor-last=Alberti |date=2003 |title=[[Leaving Springfield|Leaving Springfield: The Simpsons and the Possibility of Oppositional Culture]] |location=Detroit |publisher=[[Wayne State University Press]] |chapter=Use a Pen, Sideshow Bob: The Simpsons and the Threat of High Culture |isbn=0-8143-2849-0}}</cite> |
{{cite book |last=Arnold |first=David L. G. |editor-first=John |editor-last=Alberti |date=2003 |title=[[Leaving Springfield|Leaving Springfield: The Simpsons and the Possibility of Oppositional Culture]] |location=Detroit |publisher=[[Wayne State University Press]] |chapter=Use a Pen, Sideshow Bob: The Simpsons and the Threat of High Culture |isbn=0-8143-2849-0 |ref=Alberti}} |
|
<cite id="CITEREFAsphaugRyanZuber2003">{{cite journal |last=Asphaug |first=Erik |last2=Ryan |first2=Eileen V. |author3=Zuber, Maria T. |title=Asteroid Interiors |journal=Asteroids III |pages=463–484 |publisher=University of Arizona |location=Tucson |date=2003 |url= http://www-geodyn.mit.edu/asphaug.interiors.pdf |access-date=2009-01-04 |bibcode=2002aste.conf..463A}}</cite> |
{{cite journal |last=Asphaug |first=Erik |last2=Ryan |first2=Eileen V. |last3=Zuber |first3=Maria T. |title=Asteroid Interiors |journal=Asteroids III |pages=463–484 |publisher=University of Arizona |location=Tucson |date=2003 |url= http://www-geodyn.mit.edu/asphaug.interiors.pdf |access-date=2009-01-04 |bibcode=2002aste.conf..463A}} |
Tools
The following tools may be useful when checking Wikipedia:
- WPCleaner (WPC) (multiple languages)
- AutoWikiBrowser (AWB) (multiple languages)
- JavaScript Wiki Browser (JWB) (English)
The following scripts may also be helpful when checking Wikipedia:
- AutoEd cleans up WikiSyntax and HTML elements. (English)
- autoFormatter (English and German)
- ArticleInfo gadget (multiple languages)
- lintHint (English and German)
The following user CSS may be of further help in identifying material to clean up while editing normally:
- lint.css (language-independent; English instructions)
Bots
Bots based upon AWB or Pywikibot can correct many of the problems.
Here are the bots actively working on English Wikipedia. They can be ported to other languages.
Name | Active? | Errors fixed (by CW task number) |
---|---|---|
BG19bot (task list · contribs) | No | many |
Dexbot (task list · contribs) | Yes | 7, 19, 25, 83 |
FrescoBot (task list · contribs) | Yes | 16, 48, 64 |
Josvebot (task list · contribs) | Yes | 6, 16, 37 |
MenoBot (task list · contribs) | Yes | many |
PkbwcgsBot (task list · contribs) | No | 2, 3, 7, 16, 17, 25, 32, 85, 86, 88, 90, 91, 524 |
WikiCleanerBot (task list · contribs) | Yes | 1, 2, 7, 16, 17, 25, 46, 48, 61, 64, 83, 85, 88, 90, 91, 92, 106, 513, 532, 534, 539, 540, 543, 547, 548, 549, 550, 551, 553, 555, 557, 558, 565, 567 |
Xqbot (task list · contribs) | Yes | 3 |
Yobot (task list · contribs) | No | many |
Bots fix some of the errors here automatically. Any error tagged with "BOT" is usually fixed by bot at some point, so manually fixing them is unnecessary.
Collection of further ideas
- A bot to insert data attributes based on the syntax of the SortKey. ÅñŧóñŜûŝî (Ð)
- Warn the user using Special:AbuseFilter.
- Adapt de:MediaWiki:Gadget-Extra-Editbuttons.js (discussion)
- Adapt de:Benutzer:PerfektesChaos/js/WikiSyntaxTextMod
Participants
- All the best: Rich Farmbrough, 20:04, 15 October 2015 (UTC).
- Good to go. — CpiralCpiral 07:25, 23 December 2015 (UTC).
- I'm ready! User:TurboSonic, 2:30 12 March 2019 (UTC).
- Been at this for years already. — SMcCandlish ☏ ¢ 😼 06:41, 3 May 2019 (UTC)
See also
- Help:HTML in wikitext
- mw:Parsing/Replacing Tidy/FAQ § What will editors need to do? – simplified instructions for fixing pages for the modern MediaWiki parser
- Wikipedia:WikiProject Check Wikipedia – finds some obsolete HTML tags, among other forms of cleanup work
- Wikipedia:Linter – MediaWiki extension to identify broken and problematic markup which cannot be fixed automatically by the server
- Wikipedia:Manual of Style/Accessibility
References
- ^ HTML element#Presentation
- ^ a b "15.2 Non-conforming features". HTML Living Standard.
- ^ http://www.w3.org/TR/html5-diff/#obsolete-elements
- ^ SELFHTML – List of items for markup
- ^ a b SELFHTML – HTML/deprecated
- ^ W3C (2018-03-10). "CSS Fonts Module Level 3". Retrieved 2018-06-23.
{{cite web}}
: CS1 maint: numeric names: authors list (link) - ^ "Table". W3C.
- ^ HTML 5.2 - Obsolete features.
- ^ "Table cell". W3C.
- ^ "Table header cell". W3C.