starcitizenwiki / picture-html-support
A MediaWiki extension that wraps thumbnails with picture elements, and allows adding additional source elements
Installs: 731
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 3
Forks: 0
Open Issues: 3
Type:mediawiki-extension
Requires (Dev)
This package is auto-updated.
Last update: 2024-11-18 06:57:25 UTC
README
The PictureHtmlSupport enhances MediaWiki thumbnails on wiki page with <picture>
elements. It does these things:
- Wrap thumbnail
<img>
element with<picture>
element - Move resposive image definition to
<source>
element if enabled - Introduce the
PictureHtmlSupportBeforeProduceHtml
hook for users to add additional<source>
elements - Add a hidden
<a>
element next to the thumbnail HTML so web crawlers can crawl the original resolution image (https://phabricator.wikimedia.org/T54647)
Installation
-
Add the following line to
LocalSettings.php
:wfLoadExtension( 'PictureHtmlSupport' );
-
Replace
includes/media/ThumbnailImage.php
(make a backup!) withincludes/ThumbnailImage.php
from this extension.