• Home
  • Random
  • Nearby
  • Log in
  • Settings
Donate Now If Wikipedia is useful to you, please give today.
  • About Wikipedia
  • Disclaimers
Wikipedia

Template:URL

  • Template
  • Talk
  • Language
  • Watch
  • View source
Template documentation[view] [edit] [history] [purge]
For encoding URLs, see Help:Magic words § urlencode.
WarningThis template is used in MediaWiki:Titleblacklist-custom-URL, and on approximately 416,000 pages, or roughly 1% of all pages.
Changes to it can cause immediate changes to the Wikipedia user interface.
To avoid major disruption and server load, any changes should be tested in the template's /sandbox or /testcases subpages, or in your own user subpage. The tested changes can be added to this page in a single edit. Please discuss changes on the talk page before implementing them.
This template uses Lua:
  • Module:URL (sandbox)

This template creates a formatted external link. It formats the appearance of displayed URLs, while making them machine-readable as part of emitted microformat meta-data, inside templates such as infoboxes.

Note: If you wish to display text instead of the URL (e.g. website instead of example.com), please do not use this template. Instead, consider using normal wiki markup or Template:Official website. Displaying text instead of the url will render the microformat data invalid.

For web-based references, please see Wikipedia:Citation templates.

Contents

  • 1 Usage
    • 1.1 URL with = character should use numbered parameters
    • 1.2 Examples
  • 2 Microformat
  • 3 TemplateData
  • 4 Maintenance categories
  • 5 See also

Usage

  • {{URL|example.com}}
    • The first parameter is parsed to decide whether it is a complete URL. If it doesn't start with a URI scheme (such as "http:", "https:", or "ftp:"), the prefix "http://" is prepended to the specified generated target URL of the link.
    • Parameter 2 ({{URL|url name|optional display text}}) is deprecated. See note above for more information and alternative templates.

URL with = character should use numbered parameters

If the URL contains an equals sign, as is common in a query string, the parameter |1= should be used for the URL ({{URL|1=example.com}}). This applies when the value of the URL is unknown, for example, when this template is used in another template specifying the effective URL as a variable value

  • {{URL | 1=https://example.com/?id=42 }} → example.com?id=42
    <span class="url">[https://example.com/?id=42 example<wbr/>.com?id=42]</span>

The template attempts to handle simple cases where a URL containing an equals sign is specified without the necessary |1=, but it is still better practice to pass it in.

The deprecated second parameter for the displayed text, if present in legacy uses, must also be explicitly numbered if the first parameter is explicitly numbered ({{URL|1=url name|2=optional display text}}); otherwise it will override the value of the first parameter:

  • {{URL | 1=https://example.com/?id=42 | 2=Title }} → Title
    <span class="url">[https://example.com/?id=42 Title]</span>

Examples

The template displays an instructional message if there is no input:

  • {{URL| }} → {{URL|example.com|optional display text}}

The template wraps the output in <span class="url">...</span> (see § Microformat) and adds <wbr/> before displayed periods:

  • {{URL | www.example.com }} → www.example.com
    <span class="url">[http://www.example.com www<wbr/>.example<wbr/>.com]</span>

The use of http://, https://, a protocol-relative URL, or a different protocol is preserved in the URL but is not shown in the link text:

  • {{URL | http://www.example.com }} → www.example.com
    <span class="url">[http://www.example.com www<wbr/>.example<wbr/>.com]</span>
  • {{URL | https://www.example.com }} → www.example.com
    <span class="url">[https://www.example.com www<wbr/>.example<wbr/>.com]</span>
  • {{URL | //www.example.com }} → www.example.com
    <span class="url">[//www.example.com www<wbr/>.example<wbr/>.com]</span>
  • {{URL | ftp://www.example.com }} → www.example.com
    <span class="url">[ftp://www.example.com www<wbr/>.example<wbr/>.com]</span>
  • {{URL | ftp://ftp.example.com }} → ftp.example.com
    <span class="url">[ftp://ftp.example.com ftp<wbr/>.example<wbr/>.com]</span>
  • {{URL | irc://irc.example.com/channel }} → irc.example.com/channel
    <span class="url">[irc://irc.example.com/channel irc<wbr/>.example<wbr/>.com<wbr/>/channel]</span>

If the path is only a slash (/) it is not displayed in the link text:

  • {{URL | http://example.com/ }} → example.com
    <span class="url">[http://example.com/ example<wbr/>.com]</span>

The template also adds <wbr/> before any displayed slashes (/) in the path:

  • {{URL | example.com/path }} → example.com/path
    <span class="url">[http://example.com/path example<wbr/>.com<wbr/>/path]</span>
  • {{URL | https://example.com/path }} → example.com/path
    <span class="url">[https://example.com/path example<wbr/>.com<wbr/>/path]</span>
  • {{URL | www.example.com/path/ }} → www.example.com/path/
    <span class="url">[http://www.example.com/path/ www<wbr/>.example<wbr/>.com<wbr/>/path<wbr/>/]</span>
  • {{URL | https://www.example.com/path/ }} → www.example.com/path/
    <span class="url">[https://www.example.com/path/ www<wbr/>.example<wbr/>.com<wbr/>/path<wbr/>/]</span>

Upper case in the domain name is preserved in the URL, but not in the link text (upper case in the path is not changed):

  • {{URL | EXAMPLE.com }} → example.com
    <span class="url">[http://EXAMPLE.com example<wbr/>.com]</span>
  • {{URL | Example.com }} → example.com
    <span class="url">[http://Example.com example<wbr/>.com]</span>
  • {{URL | Example.com/PathPath }} → example.com/PathPath
    <span class="url">[http://Example.com/PathPath example<wbr/>.com<wbr/>/PathPath]</span>

For a URL containing an equal sign (=), use |1=:

  • {{URL |1= example.com/path?page=42 }} → example.com/path?page=42
    <span class="url">[http://example.com/path?page=42 example<wbr/>.com<wbr/>/path?page=42]</span>
  • {{URL |1= https://example.com/path?page=42 }} → example.com/path?page=42
    <span class="url">[https://example.com/path?page=42 example<wbr/>.com<wbr/>/path?page=42]</span>

The template currently supports an optional second parameter which is used as the link text, though its use is discouraged (see note):

  • {{URL | www.example.com | example.com }} → example.com
    <span class="url">[http://www.example.com example.com]</span>
  • {{URL | example.com | Example.com }} → Example.com
    <span class="url">[http://example.com Example.com]</span>
  • {{URL |1= example.com/path?page=42 |2= example.com }} → example.com
    <span class="url">[http://example.com/path?page=42 example.com]</span>

The URL may be obtained from Wikidata as shown in this example for Audi AG (Q23317), where the property official website (P856) contains https://www.audi.com:

  • {{URL | {{Wikidata|property|Q23317|P856}} }} → www.audi.com
    <span class="url">[https://www.audi.com www<wbr/>.audi<wbr/>.com]</span>

Microformat

The template wraps the displayed URL with a class="url" so that it is included in any parent microformat which takes a URL parameter – see our microformats project.

TemplateData

This is the TemplateData for this template used by TemplateWizard, VisualEditor and other tools. See a monthly parameter usage report for Template:URL in articles based on its TemplateData.

TemplateData for URL

A template to display and format a URL, inside other tempates

Template parameters[Edit template data]

ParameterDescriptionTypeStatus
URL1

The URL to be linked

Stringrequired
Display text2

The text to be displayed instead of the URL. Deprecated

Stringdeprecated

Maintenance categories

  • Category:Pages using URL template with unknown parameters (73)

See also

  • {{URL2}}
  • {{#invoke:WikidataIB|url2}}
  • {{Official URL}}
  • {{Official website}}
  • {{Plain link}}
  • {{Wbr}}
The above documentation is transcluded from Template:URL/doc. (edit | history)
Editors can experiment in this template's sandbox (edit | diff) and testcases (edit) pages.
Add categories to the /doc subpage. Subpages of this template.
Retrieved from "https://en.wikipedia.org/w/index.php?title=Template:URL&oldid=926680896"
Last edited on 18 November 2019, at 00:50

Languages

    • Acèh
    • Afrikaans
    • Алтай тил
    • አማርኛ
    • अंगिका
    • العربية
    • Արեւմտահայերէն
    • অসমীয়া
    • Asturianu
    • Авар
    • Azərbaycanca
    • تۆرکجه
    • Basa Bali
    • বাংলা
    • Banjar
    • 閩南語 / Bân-lâm-gú
    • Basa Banyumasan
    • Башҡортса
    • Беларуская
    • भोजपुरी
    • Bikol Central
    • Български
    • Boarisch
    • Bosanski
    • Brezhoneg
    • Català
    • Чӑвашла
    • Cebuano
    • Čeština
    • ChiShona
    • Corsu
    • Cymraeg
    • Dansk
    • الدارجة
    • ދިވެހިބަސް
    • डोटेली
    • Eesti
    • Ελληνικά
    • Español
    • Esperanto
    • Euskara
    • فارسی
    • Fiji Hindi
    • Føroyskt
    • Français
    • Fulfulde
    • Gaelg
    • Gagauz
    • Gàidhlig
    • Galego
    • ГӀалгӀай
    • 贛語
    • گیلکی
    • ગુજરાતી
    • Gungbe
    • 客家語 / Hak-kâ-ngî
    • 한국어
    • Hausa
    • Հայերեն
    • हिन्दी
    • Hrvatski
    • Ilokano
    • Bahasa Indonesia
    • Ирон
    • IsiXhosa
    • IsiZulu
    • Íslenska
    • עברית
    • Jawa
    • ქართული
    • Қазақша
    • Kreyòl ayisyen
    • Kurdî
    • Кыргызча
    • Ladin
    • ລາວ
    • Latgaļu
    • Latviešu
    • Лезги
    • Lietuvių
    • Magyar
    • Madhurâ
    • मैथिली
    • Македонски
    • Malagasy
    • മലയാളം
    • मराठी
    • მარგალური
    • مصرى
    • ဘာသာမန်
    • مازِرونی
    • Bahasa Melayu
    • 閩東語 / Mìng-dĕ̤ng-ngṳ̄
    • Mirandés
    • Мокшень
    • Монгол
    • မြန်မာဘာသာ
    • Nederlands
    • नेपाली
    • 日本語
    • Нохчийн
    • Norsk bokmål
    • Norsk nynorsk
    • Novial
    • ଓଡ଼ିଆ
    • Oʻzbekcha / ўзбекча
    • ਪੰਜਾਬੀ
    • Pangasinan
    • Papiamentu
    • پښتو
    • ភាសាខ្មែរ
    • Português
    • Română
    • Русиньскый
    • Русский
    • Sakizaya
    • संस्कृतम्
    • سرائیکی
    • Sardu
    • Scots
    • Shqip
    • Simple English
    • سنڌي
    • Slovenčina
    • Slovenščina
    • کوردی
    • Српски / srpski
    • Srpskohrvatski / српскохрватски
    • Sunda
    • Suomi
    • Svenska
    • தமிழ்
    • Татарча / tatarça
    • တႆး
    • తెలుగు
    • ไทย
    • ትግርኛ
    • Türkçe
    • Türkmençe
    • Basa Ugi
    • Українська
    • اردو
    • Tiếng Việt
    • 文言
    • 吴语
    • Yorùbá
    • 粵語
    • 中文
    • Batak Toba
    • Kumoring
    • ꠍꠤꠟꠐꠤ
    • ᥖᥭᥰ ᥖᥬᥲ ᥑᥨᥒᥰ
    • ⵜⴰⵎⴰⵣⵉⵖⵜ ⵜⴰⵏⴰⵡⴰⵢⵜ
    Wikipedia
    • Wikimedia Foundation
    • Powered by MediaWiki
    • This page was last edited on 18 November 2019, at 00:50 (UTC).
    • Content is available under CC BY-SA 4.0 unless otherwise noted.
    • Privacy policy
    • About Wikipedia
    • Disclaimers
    • Contact Wikipedia
    • Code of Conduct
    • Developers
    • Statistics
    • Cookie statement
    • Terms of Use
    • Desktop