summaryrefslogtreecommitdiff
path: root/www/wiki/skins/Vector/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'www/wiki/skins/Vector/README.md')
-rw-r--r--www/wiki/skins/Vector/README.md28
1 files changed, 28 insertions, 0 deletions
diff --git a/www/wiki/skins/Vector/README.md b/www/wiki/skins/Vector/README.md
new file mode 100644
index 00000000..85e6ff71
--- /dev/null
+++ b/www/wiki/skins/Vector/README.md
@@ -0,0 +1,28 @@
+Vector Skin
+========================
+
+Configuration options
+---------------------
+
+### $wgVectorPrintLogo
+
+Logo used in print styles. Keys are `url`, `width`, and `height` (in
+pixels). Note that this solution only works correctly if the image
+pointed to by `url` is an SVG that does not specify width and height
+attributes, or its width and height match the corresponding variables
+below. Alternatively, a PNG or other type of image can be used, but
+its dimensions also need to match the corresponding variable below.
+That in turn may result in blurry images, though.
+
+The URL can be absolute or relative.
+
+Example configuration:
+
+ $wgVectorPrintLogo = [
+ 'url' => 'https://en.wikipedia.org/static/images/mobile/copyright/wikipedia-wordmark-en.svg',
+ 'width' => 174,
+ 'height' => 27
+ ];
+
+* Type: `Array`
+* Default: `false`