Help:Lint errors/tidy-font-bug/ja
このページのヘルプ テキストは Tidy を参照していますが、これは現在ウィキメディア クラスターでは使用されていません。 2018年7月に RemexHtml に置き換えられました。 |
The table below demonstrates the problem:
| ウィキテキスト | Tidy | Remex |
|---|---|---|
<font color="green">[[Foo]]</font>
|
<a href=".."><font color="green">Foo</font></a>
|
<font color="green"><a href="..">Foo</a></font>
|
So, with Tidy, the link is now coloured green instead of blue / red (depending on whether the page exists or not) whereas Remex and Parsoid will not do this. This linter category tracks pages with this behaviour so that editors can make appropriate fixes to the wikitext depending on desired rendering.
解決策
To correctly colour a link green, the styling should be brought between the brackets:
[[Foo|<font color="green">Foo</font>]]
Preferentially, the styling should use <span> and the style attribute because <font> is obsolete in HTML 5:
[[Foo|<span style="color:green;">Foo</span>]]
Caveat
However, Tidy does not do this consistently for all cases where a font tag wraps a link or an image tag. See T294720 for examples. https://gerrit.wikimedia.org/r/c/mediawiki/services/parsoid/+/386016/6/tests/mocha/linter.js shows a bunch of wikitext snippets and what Tidy does.
ツール
The following tools can help fix tidy font bug:
Tidy font bug may be reported by WPCleaner as part of CheckWiki error #535.