Skip to content
Marcos Cáceres edited this page Jul 2, 2019 · 9 revisions

Adds additional links to the header of the document. This is useful if you want to link to other resources, like a news feed, a Github repository, or a relevant website.

The otherLinks property takes an array that contains a set of objects. Each of these objects contains a key and a data property. The key is the text that will contain the links to the relevant resources. The data is another array of objects that contain the data describing the resource (with the properties value which is a string, and href which is the URL you want to link to).

Example

var respecConfig = {
  otherLinks: [{
    key: "Implementation status",
    data: [{
      value: "Gecko",
      href: "https://bugzilla.mozilla.org/show_bug.cgi?id=xxxx"
    }, {
      value: "Blink",
      href: "https://code.google.com/p/chromium/issues/detail?id=xxx"
    }]
  }],
}

Guides

Configuration options

W3C Configuration options

Linter rules

Internal properties

Handled by ReSpec for you.

Special <section> IDs

HTML elements

Custom Elements

WebIDL

HTML attributes

CSS Classes

Special properties

Clone this wiki locally