if (exclusions[optName] !== "" && (opt.api === "any" || opt.api === "dom")) { item = [`
  • `]; if (opt.type === "boolean") { item.push(`

    ${opt.label} (${optName})

    `); if (opt.default === true) { item.push(` `); item.push(` `); } else { item.push(` `); item.push(` `); } select = false; } else { item.push(``); if (opt.type === "number" || (opt.type === "string" && opt.values === undefined)) { item.push(``); select = false; } else { item.push(``); select = true; } } item.push(`

    ${opt.definition.replace(/"/g, """)}`); if (select === true) { item.push(` ${opt.default} — ${opt.values[String(opt.default)]}`); } item.push("

    "); item.push(``); item.push(`
  • `); allItems.push(item.join("")); }