issueBase - speced/respec GitHub Wiki
issueBase
Type: string
Base URL for linking data-number issue markers to an external issue tracker.
Usage
var respecConfig = {
issueBase: "https://github.com/example/repo/issues/",
};
With this set, <div class="issue" data-number="42"> renders "Issue 42" as a link to https://github.com/example/repo/issues/42.
atRiskBase
Type: string
Works the same as issueBase but applies to issues marked with class="atrisk" (W3C "Feature at Risk" markers). If not set, at-risk issues with data-number are not linked.
var respecConfig = {
issueBase: "https://github.com/example/repo/issues/",
atRiskBase: "https://github.com/example/repo/issues/",
};