starcitizenwiki / picture-html-support
A MediaWiki extension that wraps thumbnails with picture elements, and allows adding additional source elements
Installs: 837
Dependents: 0
Suggesters: 0
Security: 0
Stars: 3
Watchers: 2
Forks: 0
Open Issues: 6
Type:mediawiki-extension
pkg:composer/starcitizenwiki/picture-html-support
Requires (Dev)
- dev-master
- 1.0.0
- dev-dependabot/composer/mediawiki/minus-x-2.0.0
- dev-dependabot/composer/mediawiki/mediawiki-codesniffer-49.0.0
- dev-dependabot/github_actions/actions/cache-5
- dev-dependabot/github_actions/actions/checkout-6
- dev-dependabot/github_actions/tj-actions/changed-files-47
- dev-dependabot/composer/mediawiki/mediawiki-codesniffer-48.0.0
This package is auto-updated.
Last update: 2026-01-12 02:39:48 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
PictureHtmlSupportBeforeProduceHtmlhook 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.phpfrom this extension.