Template

Visible anchor

From Halal Explorer

Revision as of 13:44, 20 February 2014 by imported>Texugo
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
[view] [edit] [history] [purge] Template-info.svg Template documentation

The template {{visible anchor}} inserts one or more HTML anchors in a page. Those locations can then be linked to using [[#link|...]] syntax.  Unlike {{Anchor}}, the first parameter will be visible text on the page.

Examples

1. {{visible anchor|foo}}

could be linked to with [[#foo|...]] from within the same article,
or it could be linked to with [[articlename#foo|...]] from other articles and from redirects.

2. Anchors can be more suitable for inter-article linking than section titles are. For example,

== {{visible anchor|foo}} Section title ==
Here, links via [[articlename#foo]] would remain valid even if the section were renamed. See Limitations for the editing problems this use introduces.
The following is an example of what not to do:
== Section title {{visible anchor|bar}} ==
Here, the link [[articlename#bar]] would take the user to the section, but undesirably hide the section title from view.

3. The template can be used to create up to ten anchors with a single call. For example,

{{visible anchor|foo|bar|baz}}
will create three anchors that can then be linked to with [[#foo]], [[#bar]] and [[#baz]].
Specifying more than 10 anchors will cause an error message to be displayed.


4. If the text to be displayed must differ from the anchor (e.g. because it contains brackets for linking), the text parameter can be used:

{{visible anchor|foo|text=[[foo]]}}
this will result in a link that constitutes an anchor of its own

Limitations

character Character entity reference code template meaning
" "
"
N/a (double) quotation mark
# # N/a hash
| | N/a pipe
= = {{=}} equals
  • Anchor names that contain any character shown in the table on the right will not work as expected. However, any of these characters can be replaced with the "&#" codes shown for them here. Or, the pipe symbol and equals sign can be worked around with {{!}} and {{=}}, respectively. Markup code such as superscript and subscript cannot be used. Most other characters, including white space and punctuation, are not a problem.
  • The template can create a maximum of 10 anchors. Specifying more than 10 anchors will result in an error message.
  • Unlike with most templates, putting each anchor name on separate lines, for example
{{visible anchor
|humpty
|dumpty}}
will not work as expected.
  • Anchor names should be unique on a page, and should not duplicate any heading titles. Duplicate anchors will not work as expected since the #links go to the first anchor with that name. Duplicate anchors also result in invalid HTML; you can check for duplicate anchors by running the page through the W3C Markup Validation Service.
  • If the template is added to a section title then the code will appear in the edit summary when that section is edited, as in "/* {{anchor|Issues}}Limitations */ New issue". This can be fixed by deleting the template code from the edit summary before the changes are saved. However, this fix breaks the section link in the article revision history.
  • Anchor links are case sensitive in some browsers, so treat all anchor links as case sensitive.