Link macros

MDN provides numerous macros to create always up-to-date links to MDN content. In this guide, you will learn about MDN cross-reference macros that you can use to include a single link to another page or a list of links to all of a document's subpages.

MDN provides macros that create a list of links:

{{LandingPageListSubPages}}

Inserts a definition list (<dl>) of the subpages of the current page, with each page's title as the <dt> term and its first paragraph as the <dd> term.

{{ListSubpagesForSidebar()}}

When included without parameters, inserts an ordered list of links to the current page's subpages. This macro is most often used within sidebars (hence the macro name), where the bullets are not rendered. The first parameter is a slug of the link tree's parent page. The link text is displayed as code. Setting a second parameter to true or 1 converts the links to plain text. Setting a third parameter to true or 1 adds a link to the slug (parent) page at the top of the list with "Overview" as the link text.

{{QuickLinksWithSubpages()}}

Creates a set of quicklinks using the current page's (or the specified page's) children as the destinations. This creates hierarchical lists up to two levels deep. The pages' titles are used as the link text and their summaries as tooltips.

To include an ordered list of links that includes this page and its siblings, write the following:

md
{{ListSubpagesForSidebar("/en-US/docs/MDN/Writing_guidelines/Page_structures/Macros", 1)}}

This produces:

  1. Commonly-used macros
  2. Other macros

Some macros create a single link to cross-reference a CSS, JavaScript, SVG, or HTML feature, including attributes, elements, properties, data types, and APIs. The macros that create single links require at least one parameter: the feature being referenced.

These macros are:

The first parameter of each of these macros is the last section of the slug of the document being referenced. For example, for HTML Elements, include {{HTMLElement("")}} with the part of the slug that comes after Web/HTML/Element/ in the slug being the first parameter. With {{CSSxRef("")}}, add the part of the slug that comes after Web/CSS/ in the slug. The link will go to this page.

By default, the text displayed is the linked resource as written in the first parameter, in angle brackets for the case of {{HTMLElement()}}. This may not be what you want. For example, the slug for the range input type is Web/HTML/Element/input/range. Including {{HTMLElement("input/range")}} produces "<input/range>". That is not what you want. All the macros accept additional parameters, so you can provide the text you want to display.

The second parameter, if present, provides the link text. In the input range case, we would write {{HTMLElement("input/range", "<input type="range">")}} which produces "<input type="range">". This particular macro removes the <code> and angle brackets when the second parameter includes a space, so we added the brackets and code tags.

Each macro is different!

To prevent HTML code semantics and CSS code styling, some cross-reference macros include a parameter with the "nocode" to disable this styling.

For example, {{CSSxRef("background-color")}} creates the code link "background-color" and {{domxref("CSS.supports_static", "check support", "nocode")}} creates the plain text link "check support.nocode".

Make sure to look at the source code to understand how the macro you are using works and to understand the various parameters; while the parameters are generally well documented, exceptions like "don't render as code if the second parameter includes a space" that we saw in the {{HTMLElement("")}} macro is in the code but not otherwise documented.

To learn which parameters each macro supports and the order of parameters for each macro, the macro's source file, linked above, includes documentation. There is a list of commonly used macros, each of which outputs links in the main content area of the page.

See also

  • Using macros
  • Macros on GitHub
  • Commonly used macros, including BCD macros ( {{Compat}}, {{Compat(<feature>)}}, and {{Compat(<feature>, <depth>)}}) and specification macros ({{Specifications}} / {{Specifications(<feature>)}})
  • Banners and notices guide including the {{SeeCompatTable}}, {{Deprecated_Header}}, and {{SecureContext_Header}} macros.