Jump to content

Module:Icon/data/doc: Difference between revisions

From Wikipedia, the free encyclopedia
Content deleted Content added
No edit summary
m change source to syntaxhighlight
Line 6: Line 6:
To add a new icon, add a table in the following format:
To add a new icon, add a table in the following format:


<source lang="lua">
<syntaxhighlight lang="lua">
code = {
code = {
image = "My image name.xyz",
image = "My image name.xyz",
tooltip = "My tooltip text",
tooltip = "My tooltip text",
},
},
</syntaxhighlight>
</source>


If you want to add aliases for the code, use the following format instead:
If you want to add aliases for the code, use the following format instead:
<source lang="lua">
<syntaxhighlight lang="lua">
code = {
code = {
aliases = {"alias1", "alias2"},
aliases = {"alias1", "alias2"},
Line 20: Line 20:
tooltip = "My tooltip text",
tooltip = "My tooltip text",
},
},
</syntaxhighlight>
</source>


If any of the text you add has double quotes in, you will need to escape it with backslashes like this: {{code|"My \"quoted\" image.svg"|lua}}.
If any of the text you add has double quotes in, you will need to escape it with backslashes like this: {{code|"My \"quoted\" image.svg"|lua}}.

Revision as of 16:28, 7 July 2020

This module stores icon data for Module:Icon.

Adding icons

To add a new icon, add a table in the following format:

	code = {
		image = "My image name.xyz",
		tooltip = "My tooltip text",
	},

If you want to add aliases for the code, use the following format instead:

	code = {
		aliases = {"alias1", "alias2"},
		image = "My image name.xyz",
		tooltip = "My tooltip text",
	},

If any of the text you add has double quotes in, you will need to escape it with backslashes like this: "My \"quoted\" image.svg".

Please make sure that any codes and aliases that you add don't match any existing codes or aliases. If they do, one of them will be overwritten with the other (and it's not possible to say for certain which will be overwritten with which).

You can omit the tooltip text if you want, but it is recommended that you add it.

Removing icons

Removing icons is fairly easy. Just remove the relevant entry from the data table. You can't remove the _DEFAULT entry, as Module:Icon relies on it being there.