Module:File link/doc: Difference between revisions

From the Croc Wiki, the Croc encyclopedia
Jump to navigationJump to search
m
27 revisions imported
(fix)
m (27 revisions imported)
 
(3 intermediate revisions by 2 users not shown)
Line 1:
{{Module rating|protected}}
{{Lua|Module:Yesno|Module:Arguments}}
This module is used to construct wikitext links to files. It is primarily useful for templates and modules that use complicated logic to make file links. Simple file links should be made with wikitext markup directly, as it uses less resources than calling this module. For help with wikitext file markup please refer to the [[mw:Help:Images|documentation at mediawiki.org]].
 
Line 10 ⟶ 11:
First, you need to import the module.
 
<sourcesyntaxhighlight lang="lua">
local mFileLink = require('Module:File link')
</syntaxhighlight>
</source>
 
Then you can make file links using the <code>_main</code> function.
 
<sourcesyntaxhighlight lang="lua">
mFileLink._main(args)
</syntaxhighlight>
</source>
 
<var>args</var> is a table of arguments that can have the following keys:
Line 30 ⟶ 31:
* <code>upright</code> - the 'upright' parameter, used for setting the size of tall and thin images.
* <code>link</code> - the page that the file should link to. Use the blank string <nowiki>''</nowiki> to suppress the default link to the file description page.
* <code>alt</code> - the alt text. Use the blank string <nowiki>''</nowiki> to suppress the default alt text.
* <code>caption</code> - a caption for the file.
* <code>page</code> - sets a page number for multi-paged files such as PDFs.
Line 44 ⟶ 45:
 
With the file only:
<sourcesyntaxhighlight lang="lua">
mFileLink.main{file = 'Example.png'}
-- Renders as [[File:Example.png]]
</syntaxhighlight>
</source>
 
With format, size, link and caption options:
<sourcesyntaxhighlight lang="lua">
mFileLink.main{
file = 'Example.png',
Line 59 ⟶ 60:
}
-- Renders as [[File:Example.png|thumb|220px|link=Wikipedia:Sandbox|An example.]]
</syntaxhighlight>
</source>
 
With format, size, and border:
<sourcesyntaxhighlight lang="lua">
mFileLink.main{
file = 'Example.png',
Line 70 ⟶ 71:
}
-- Renders as [[File:Example.png|frameless|border|220px]]
</syntaxhighlight>
</source>
 
<includeonly>{{#ifeq:{{SUBPAGENAME}}|sandbox||
Cookies help us deliver our services. By using our services, you agree to our use of cookies.

Navigation menu