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[edit]

Implementation of the new HTML5 attributes accepted by MediaWiki software. These include:

Attributes for text formatting[1]
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"

style="text-align:right;"

Positioning can be made using position: or float:, display: inline-block;, and alignments using text-align: as a replacement.

valign="top" style="vertical-align:top;"

valign can be replaced by CSS vertical-align: on a cell or row. Note that it cannot be applied to a whole table.

<tt>...</tt> <code>...</code>

<kbd>...</kbd>

<samp>...</samp>

<span style="font-family:monospace,monospace;">

Depending on the desired semantic, <code> is for fragments of computer code, <kbd> for user input and <samp> for outputs, and even <var> for variables.[4]

Note: font-family:monospace,monospace is correct, and prevents an unexpectedly small font in Gecko- and WebKit-based browsers, see WP:MONO.

{| bgcolor="gray"

| bgcolor="gray"

{| style="background-color:gray;"

| style="background-color:gray;"

Obsolete since HTML4[2][5] Replacements
<center>...</center> <div class="center">...</div>

<div style="text-align:center;">...</div>

<div class="centered">...</div>

<div style="margin:auto;">...</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>

<del>...</del>

<span style="text-decoration:line-through;">...</span>

<font size="3">...</font> <span style="font-size:125%;">...</span>

((small))

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 <small>...</small> is for fine print, not for stylistic issues.

<font color="red">...</font> <span style="color:red;">...</span>

<span class="error">...</span>

<font face="Courier">...</font> <span style="font-family:Courier, monospace;">...</span>

<span style="font:125% Courier, monospace;">...</span>

The specification should definitely end with a generic font, usually serif, sans-serif, ormonospace, and rarely cursive or fantasy. In general, these inflexible specifications of a font should be removed entirely or replaced by semantic elements, such as <code> (see below).

Obsolete elements and attributes[edit]

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|<center>caption</center>)) ((wide image|image|align-cap=center|caption))

Parser tags

Some parser tags can use CSS styles:

Obsolete Replacement Search
<center><gallery>...</gallery></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>
{|

|}
</center>


<div align="center">
{|

|}
</div>

{| style="margin: 1em auto;" (search articles)


(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)

tt

<tt>...</tt> formats text in a fixed-width font. (search articles) (search all)

Table attributes

Obsolete table attributes.[7][8]

Obsolete attribute CSS style on cell
style="CODE BELOW"
CSS style on table
style="CODE BELOW"
Search
  • align=left
  • align=right
  • align=center
  • text-align: left;
  • text-align: right;
  • text-align: center;
  • margin-right: auto;
  • margin-left: auto;
  • margin: 1em auto;
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;
  • valign=top
  • valign=middle
  • valign=bottom
  • vertical-align: top;
  • vertical-align: middle;
  • vertical-align: bottom;
  • width=25%
  • width=200
  • width: 25%;
  • width: 200px;
  • width: 25%;
  • width: 200px;
  • {| summary=foo
  • <table summary=foo>...</table>
See T43917

Allowed, obsolete but rarely used table attributes:

Additionally, these attributes are obsolete on table cells.[9][10]

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

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))
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:

Misused elements[edit]

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:

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[edit]

The following tools may be useful when checking Wikipedia:

The following scripts may also be helpful when checking Wikipedia:

The following user CSS may be of further help in identifying material to clean up while editing normally:

  • lint.css (language-independent; English instructions)

See also: Wikipedia:Linter § Reports

Bots[edit]

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
MalnadachBot (task list · contribs) No 532, 535, 539, 541
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

Participants[edit]

This partcipants list is rather moribund; it's probably more practical to add yourself to Wikipedia:WikiProject Check Wikipedia/Participants, since that's a full-scale wikiproject devoted to this and other forms of Wikipedia technical cleanup.

See also[edit]

References[edit]

  1. ^ HTML element#Presentation
  2. ^ a b "15.2 Non-conforming features". HTML Living Standard.
  3. ^ http://www.w3.org/TR/html5-diff/#obsolete-elements
  4. ^ SELFHTML – List of items for markup
  5. ^ a b SELFHTML – HTML/deprecated
  6. ^ W3C (2018-03-10). "CSS Fonts Module Level 3". Retrieved 2018-06-23.((cite web)): CS1 maint: numeric names: authors list (link)
  7. ^ "Table". W3C.
  8. ^ HTML 5.2 - Obsolete features.
  9. ^ "Table cell". W3C.
  10. ^ "Table header cell". W3C.