Skip to content
Sid Vishnoi edited this page Sep 22, 2020 · 16 revisions

group

group is a shorthand configuration option for specifying wg, wgId, wgURI, wgPatentURI, and wgPatentPolicy options. It fetches working group details using the W3C API.

var respecConfig = {
  group: "payment",
  // is equivalent to:
  // wg: "Web Payments Working Group",
  // wgId: 83744,
  // wgPatentURI: "https://www.w3.org/2004/01/pp-impl/83744/status",
  // wgURI: "https://www.w3.org/Payments/WG/",
  // wgPatentPolicy: "PP2020", (or whatever the WG is using!)
};

You can also specify multiple groups:

var respecConfig = {
  group: ["group1", "group2"],
};

If a Community Group (CG) and a Working Group (WG) are using the same shortname, e.g. "wot", you can specify the group type as:

var respecConfig = {
  group: "wg/wot",
};

A list of valid group names can be found at: https://respec.org/w3c/groups/.

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