diff --git a/BaseThunderstoreService.html b/BaseThunderstoreService.html
index da1604a234..f35c23e5d0 100644
--- a/BaseThunderstoreService.html
+++ b/BaseThunderstoreService.html
@@ -398,7 +398,7 @@
diff --git a/badge-maker_lib_index.js.html b/badge-maker_lib_index.js.html
index f0e5ff8d09..297bfdfd3e 100644
--- a/badge-maker_lib_index.js.html
+++ b/badge-maker_lib_index.js.html
@@ -80,6 +80,11 @@ function _validate(format) {
`Field \`style\` must be one of (${styleValues.toString()})`,
)
}
+ if ('idSuffix' in format && !/^[a-zA-Z0-9\-_]*$/.test(format.idSuffix)) {
+ throw new ValidationError(
+ 'Field `idSuffix` must contain only numbers, letters, -, and _',
+ )
+ }
}
function _clean(format) {
@@ -91,6 +96,7 @@ function _clean(format) {
'style',
'logoBase64',
'links',
+ 'idSuffix',
]
const cleaned = {}
@@ -123,6 +129,7 @@ function _clean(format) {
* @param {string} format.style (Optional) Visual style (e.g: 'flat')
* @param {string} format.logoBase64 (Optional) Logo data URL
* @param {Array} format.links (Optional) Links array (e.g: ['https://example.com', 'https://example.com'])
+ * @param {string} format.idSuffix (Optional) Suffix for IDs, e.g. 1, 2, and 3 for three invocations that will be used on the same page.
* @returns {string} Badge in SVG format
* @see https://github.com/badges/shields/tree/master/badge-maker/README.md
*/
@@ -152,7 +159,7 @@ module.exports = {
diff --git a/badge-maker_lib_xml.js.html b/badge-maker_lib_xml.js.html
index 1664192c0f..cc287f4735 100644
--- a/badge-maker_lib_xml.js.html
+++ b/badge-maker_lib_xml.js.html
@@ -138,7 +138,7 @@ module.exports = { escapeXml, stripXmlWhitespace, XmlElement, ElementList }
diff --git a/core_base-service_base-graphql.js.html b/core_base-service_base-graphql.js.html
index 189045cccb..74335c4ff3 100644
--- a/core_base-service_base-graphql.js.html
+++ b/core_base-service_base-graphql.js.html
@@ -148,7 +148,7 @@ export default BaseGraphqlService
diff --git a/core_base-service_base-json.js.html b/core_base-service_base-json.js.html
index 568091c5eb..bee68da8e3 100644
--- a/core_base-service_base-json.js.html
+++ b/core_base-service_base-json.js.html
@@ -114,7 +114,7 @@ export default BaseJsonService
diff --git a/core_base-service_base-svg-scraping.js.html b/core_base-service_base-svg-scraping.js.html
index 9e37c51d34..9e0ff89ce3 100644
--- a/core_base-service_base-svg-scraping.js.html
+++ b/core_base-service_base-svg-scraping.js.html
@@ -145,7 +145,7 @@ export default BaseSvgScrapingService
diff --git a/core_base-service_base-toml.js.html b/core_base-service_base-toml.js.html
index 94b7429795..865181c250 100644
--- a/core_base-service_base-toml.js.html
+++ b/core_base-service_base-toml.js.html
@@ -128,7 +128,7 @@ export default BaseTomlService
diff --git a/core_base-service_base-xml.js.html b/core_base-service_base-xml.js.html
index ece90ac4df..b29a8482db 100644
--- a/core_base-service_base-xml.js.html
+++ b/core_base-service_base-xml.js.html
@@ -124,7 +124,7 @@ export default BaseXmlService
diff --git a/core_base-service_base-yaml.js.html b/core_base-service_base-yaml.js.html
index 6cb10117dd..3e3640537a 100644
--- a/core_base-service_base-yaml.js.html
+++ b/core_base-service_base-yaml.js.html
@@ -127,7 +127,7 @@ export default BaseYamlService
diff --git a/core_base-service_base.js.html b/core_base-service_base.js.html
index c6efe25359..629e300910 100644
--- a/core_base-service_base.js.html
+++ b/core_base-service_base.js.html
@@ -632,7 +632,7 @@ export default BaseService
diff --git a/core_base-service_errors.js.html b/core_base-service_errors.js.html
index 1134819c47..f38f1fe211 100644
--- a/core_base-service_errors.js.html
+++ b/core_base-service_errors.js.html
@@ -265,7 +265,7 @@ export {
diff --git a/core_base-service_graphql.js.html b/core_base-service_graphql.js.html
index eea205b989..c521759287 100644
--- a/core_base-service_graphql.js.html
+++ b/core_base-service_graphql.js.html
@@ -93,7 +93,7 @@ export { mergeQueries }
diff --git a/core_base-service_openapi.js.html b/core_base-service_openapi.js.html
index 96c8a118e6..6950744863 100644
--- a/core_base-service_openapi.js.html
+++ b/core_base-service_openapi.js.html
@@ -400,7 +400,7 @@ export {
diff --git a/core_base-service_resource-cache.js.html b/core_base-service_resource-cache.js.html
index e80aa61c0d..6298f3d871 100644
--- a/core_base-service_resource-cache.js.html
+++ b/core_base-service_resource-cache.js.html
@@ -111,7 +111,7 @@ export { getCachedResource, clearResourceCache }
diff --git a/core_base-service_service-definitions.js.html b/core_base-service_service-definitions.js.html
index 8c00c7162a..90e1f3cde8 100644
--- a/core_base-service_service-definitions.js.html
+++ b/core_base-service_service-definitions.js.html
@@ -126,7 +126,7 @@ export {
diff --git a/core_server_prometheus-metrics.js.html b/core_server_prometheus-metrics.js.html
index d6c9ef08de..d4e7f22c91 100644
--- a/core_server_prometheus-metrics.js.html
+++ b/core_server_prometheus-metrics.js.html
@@ -127,7 +127,7 @@ export default class PrometheusMetrics {
diff --git a/core_server_server.js.html b/core_server_server.js.html
index 3009490ece..3321ddf4c0 100644
--- a/core_server_server.js.html
+++ b/core_server_server.js.html
@@ -654,7 +654,7 @@ export default Server
diff --git a/core_service-test-runner_create-service-tester.js.html b/core_service-test-runner_create-service-tester.js.html
index 31d7364840..e7496ff03c 100644
--- a/core_service-test-runner_create-service-tester.js.html
+++ b/core_service-test-runner_create-service-tester.js.html
@@ -74,7 +74,7 @@ export default createServiceTester
diff --git a/core_service-test-runner_icedfrisby-shields.js.html b/core_service-test-runner_icedfrisby-shields.js.html
index 6e91957a5c..681a5e5cfe 100644
--- a/core_service-test-runner_icedfrisby-shields.js.html
+++ b/core_service-test-runner_icedfrisby-shields.js.html
@@ -146,7 +146,7 @@ export default factory
diff --git a/core_service-test-runner_runner.js.html b/core_service-test-runner_runner.js.html
index c6d5d19bb3..b81d7ac130 100644
--- a/core_service-test-runner_runner.js.html
+++ b/core_service-test-runner_runner.js.html
@@ -118,7 +118,7 @@ export default Runner
diff --git a/core_service-test-runner_service-tester.js.html b/core_service-test-runner_service-tester.js.html
index 8f14acd0b1..29c8adde29 100644
--- a/core_service-test-runner_service-tester.js.html
+++ b/core_service-test-runner_service-tester.js.html
@@ -184,7 +184,7 @@ export default ServiceTester
diff --git a/core_service-test-runner_services-for-title.js.html b/core_service-test-runner_services-for-title.js.html
index e2a2771e62..1095a24d5d 100644
--- a/core_service-test-runner_services-for-title.js.html
+++ b/core_service-test-runner_services-for-title.js.html
@@ -75,7 +75,7 @@ export default servicesForTitle
diff --git a/core_token-pooling_token-pool.js.html b/core_token-pooling_token-pool.js.html
index 3ff5302ce3..c94fd25b30 100644
--- a/core_token-pooling_token-pool.js.html
+++ b/core_token-pooling_token-pool.js.html
@@ -379,7 +379,7 @@ export { sanitizeToken, Token, TokenPool }
diff --git a/global.html b/global.html
index e655902fd6..bc5b9263c5 100644
--- a/global.html
+++ b/global.html
@@ -1876,7 +1876,7 @@ testAuth(StackExchangeReputation, QueryStringAuth, { items: [{ reputation: 8 }]
diff --git a/index.html b/index.html
index 5a934c176e..557e5ca5aa 100644
--- a/index.html
+++ b/index.html
@@ -214,7 +214,7 @@ domain unless specified otherwise.
diff --git a/module-badge-maker.html b/module-badge-maker.html
index df5e026e6c..a175756a56 100644
--- a/module-badge-maker.html
+++ b/module-badge-maker.html
@@ -350,6 +350,29 @@
+
+
+
+ idSuffix |
+
+
+
+
+
+string
+
+
+
+ |
+
+
+
+
+
+ (Optional) Suffix for IDs, e.g. 1, 2, and 3 for three invocations that will be used on the same page. |
+
+
+
@@ -394,7 +417,7 @@
Source:
@@ -475,7 +498,7 @@
diff --git a/module-badge-maker_lib_xml-ElementList.html b/module-badge-maker_lib_xml-ElementList.html
index c2103d8ac1..d3ff685ac3 100644
--- a/module-badge-maker_lib_xml-ElementList.html
+++ b/module-badge-maker_lib_xml-ElementList.html
@@ -163,7 +163,7 @@ like an XmlElement but renders multiple XML tags (not wrapped in a ).
diff --git a/module-badge-maker_lib_xml-XmlElement.html b/module-badge-maker_lib_xml-XmlElement.html
index d5f770cd10..a00df301e2 100644
--- a/module-badge-maker_lib_xml-XmlElement.html
+++ b/module-badge-maker_lib_xml-XmlElement.html
@@ -474,7 +474,7 @@ element will be rendered as a self-closing element.
diff --git a/module-badge-maker_lib_xml.html b/module-badge-maker_lib_xml.html
index 9d0551ab4a..ec843290b9 100644
--- a/module-badge-maker_lib_xml.html
+++ b/module-badge-maker_lib_xml.html
@@ -128,7 +128,7 @@
diff --git a/module-core_base-service_base-BaseService.html b/module-core_base-service_base-BaseService.html
index 7516e06c83..697a4b2b39 100644
--- a/module-core_base-service_base-BaseService.html
+++ b/module-core_base-service_base-BaseService.html
@@ -899,7 +899,7 @@ for a given route parameter
diff --git a/module-core_base-service_base-graphql-BaseGraphqlService.html b/module-core_base-service_base-graphql-BaseGraphqlService.html
index 81b3048ae5..b665dd9704 100644
--- a/module-core_base-service_base-graphql-BaseGraphqlService.html
+++ b/module-core_base-service_base-graphql-BaseGraphqlService.html
@@ -913,7 +913,7 @@ an InvalidResponse.
diff --git a/module-core_base-service_base-graphql.html b/module-core_base-service_base-graphql.html
index 6b19bb1f94..829ec77f77 100644
--- a/module-core_base-service_base-graphql.html
+++ b/module-core_base-service_base-graphql.html
@@ -125,7 +125,7 @@
diff --git a/module-core_base-service_base-json-BaseJsonService.html b/module-core_base-service_base-json-BaseJsonService.html
index f1b5be8527..73e2d3f1c9 100644
--- a/module-core_base-service_base-json-BaseJsonService.html
+++ b/module-core_base-service_base-json-BaseJsonService.html
@@ -758,7 +758,7 @@ that will be logged (to sentry, if configured).
diff --git a/module-core_base-service_base-json.html b/module-core_base-service_base-json.html
index f48b1f9701..5ae2a08cc0 100644
--- a/module-core_base-service_base-json.html
+++ b/module-core_base-service_base-json.html
@@ -125,7 +125,7 @@
diff --git a/module-core_base-service_base-svg-scraping-BaseSvgScrapingService.html b/module-core_base-service_base-svg-scraping-BaseSvgScrapingService.html
index b0348e2db3..ff846b6e65 100644
--- a/module-core_base-service_base-svg-scraping-BaseSvgScrapingService.html
+++ b/module-core_base-service_base-svg-scraping-BaseSvgScrapingService.html
@@ -849,7 +849,7 @@ that will be logged (to sentry, if configured).
diff --git a/module-core_base-service_base-svg-scraping.html b/module-core_base-service_base-svg-scraping.html
index d1e334324f..a9ba2a179b 100644
--- a/module-core_base-service_base-svg-scraping.html
+++ b/module-core_base-service_base-svg-scraping.html
@@ -125,7 +125,7 @@
diff --git a/module-core_base-service_base-toml-BaseTomlService.html b/module-core_base-service_base-toml-BaseTomlService.html
index 1043db823a..d333eb26e5 100644
--- a/module-core_base-service_base-toml-BaseTomlService.html
+++ b/module-core_base-service_base-toml-BaseTomlService.html
@@ -599,7 +599,7 @@ that will be logged (to sentry, if configured).
diff --git a/module-core_base-service_base-toml.html b/module-core_base-service_base-toml.html
index 66fe6daab0..aa878d90f5 100644
--- a/module-core_base-service_base-toml.html
+++ b/module-core_base-service_base-toml.html
@@ -125,7 +125,7 @@
diff --git a/module-core_base-service_base-xml-BaseXmlService.html b/module-core_base-service_base-xml-BaseXmlService.html
index 6d5a392c95..f34479d3af 100644
--- a/module-core_base-service_base-xml-BaseXmlService.html
+++ b/module-core_base-service_base-xml-BaseXmlService.html
@@ -641,7 +641,7 @@ that will be logged (to sentry, if configured).
diff --git a/module-core_base-service_base-xml.html b/module-core_base-service_base-xml.html
index 9d9a7b0def..6b2303c5a2 100644
--- a/module-core_base-service_base-xml.html
+++ b/module-core_base-service_base-xml.html
@@ -125,7 +125,7 @@
diff --git a/module-core_base-service_base-yaml-BaseYamlService.html b/module-core_base-service_base-yaml-BaseYamlService.html
index bfe46e721b..8ac2bf600d 100644
--- a/module-core_base-service_base-yaml-BaseYamlService.html
+++ b/module-core_base-service_base-yaml-BaseYamlService.html
@@ -638,7 +638,7 @@ that will be logged (to sentry, if configured).
diff --git a/module-core_base-service_base-yaml.html b/module-core_base-service_base-yaml.html
index 4df55f32e6..649422f3de 100644
--- a/module-core_base-service_base-yaml.html
+++ b/module-core_base-service_base-yaml.html
@@ -125,7 +125,7 @@
diff --git a/module-core_base-service_base.html b/module-core_base-service_base.html
index ce611936f5..5c91e41011 100644
--- a/module-core_base-service_base.html
+++ b/module-core_base-service_base.html
@@ -944,7 +944,7 @@ name: 'compact_message', schema: { type: 'boolean' }, example: null
diff --git a/module-core_base-service_errors-Deprecated.html b/module-core_base-service_errors-Deprecated.html
index c6ee763db2..6fddd70b6f 100644
--- a/module-core_base-service_errors-Deprecated.html
+++ b/module-core_base-service_errors-Deprecated.html
@@ -211,7 +211,7 @@
diff --git a/module-core_base-service_errors-ImproperlyConfigured.html b/module-core_base-service_errors-ImproperlyConfigured.html
index d14f488421..173642e94f 100644
--- a/module-core_base-service_errors-ImproperlyConfigured.html
+++ b/module-core_base-service_errors-ImproperlyConfigured.html
@@ -211,7 +211,7 @@
diff --git a/module-core_base-service_errors-Inaccessible.html b/module-core_base-service_errors-Inaccessible.html
index ac4aaac2fa..0c85a165b5 100644
--- a/module-core_base-service_errors-Inaccessible.html
+++ b/module-core_base-service_errors-Inaccessible.html
@@ -212,7 +212,7 @@ or to wrap a 5XX response
diff --git a/module-core_base-service_errors-InvalidParameter.html b/module-core_base-service_errors-InvalidParameter.html
index 7174a35d93..18b2b1a6af 100644
--- a/module-core_base-service_errors-InvalidParameter.html
+++ b/module-core_base-service_errors-InvalidParameter.html
@@ -212,7 +212,7 @@ is invalid or unexpected
diff --git a/module-core_base-service_errors-InvalidResponse.html b/module-core_base-service_errors-InvalidResponse.html
index 6bff2f5b44..dce957912b 100644
--- a/module-core_base-service_errors-InvalidResponse.html
+++ b/module-core_base-service_errors-InvalidResponse.html
@@ -211,7 +211,7 @@
diff --git a/module-core_base-service_errors-NotFound.html b/module-core_base-service_errors-NotFound.html
index 0e9865bdf6..109155b3d0 100644
--- a/module-core_base-service_errors-NotFound.html
+++ b/module-core_base-service_errors-NotFound.html
@@ -211,7 +211,7 @@
diff --git a/module-core_base-service_errors-ShieldsRuntimeError.html b/module-core_base-service_errors-ShieldsRuntimeError.html
index 74ab4903af..eaa43395d5 100644
--- a/module-core_base-service_errors-ShieldsRuntimeError.html
+++ b/module-core_base-service_errors-ShieldsRuntimeError.html
@@ -384,7 +384,7 @@ should override this method.
diff --git a/module-core_base-service_errors.html b/module-core_base-service_errors.html
index 72ab4c677d..739db24dd3 100644
--- a/module-core_base-service_errors.html
+++ b/module-core_base-service_errors.html
@@ -343,7 +343,7 @@ for. Defaults to the cacheLength of the service class throwing the error
diff --git a/module-core_base-service_graphql.html b/module-core_base-service_graphql.html
index 7f159cd88e..236a57e353 100644
--- a/module-core_base-service_graphql.html
+++ b/module-core_base-service_graphql.html
@@ -296,7 +296,7 @@ but can't use that due to incorrect packaging.
diff --git a/module-core_base-service_openapi.html b/module-core_base-service_openapi.html
index 6da69fd4c5..6e9b4e3848 100644
--- a/module-core_base-service_openapi.html
+++ b/module-core_base-service_openapi.html
@@ -1633,7 +1633,7 @@ Query params are usually strings. (Optional)
diff --git a/module-core_base-service_resource-cache.html b/module-core_base-service_resource-cache.html
index 266c6b2db4..93dc4dbbb4 100644
--- a/module-core_base-service_resource-cache.html
+++ b/module-core_base-service_resource-cache.html
@@ -568,7 +568,7 @@
diff --git a/module-core_base-service_service-definitions.html b/module-core_base-service_service-definitions.html
index 3786f6cebd..00024cbafb 100644
--- a/module-core_base-service_service-definitions.html
+++ b/module-core_base-service_service-definitions.html
@@ -191,7 +191,7 @@
diff --git a/module-core_server_server-Server.html b/module-core_server_server-Server.html
index 3a8468d2f8..6ae59c508f 100644
--- a/module-core_server_server-Server.html
+++ b/module-core_server_server-Server.html
@@ -681,7 +681,7 @@ Start listening for requests on this.baseUrl()
diff --git a/module-core_server_server.html b/module-core_server_server.html
index 4c3fcd34ad..dbb6a0f2cb 100644
--- a/module-core_server_server.html
+++ b/module-core_server_server.html
@@ -125,7 +125,7 @@
diff --git a/module-core_service-test-runner_create-service-tester.html b/module-core_service-test-runner_create-service-tester.html
index bc20a370c0..97396e885d 100644
--- a/module-core_service-test-runner_create-service-tester.html
+++ b/module-core_service-test-runner_create-service-tester.html
@@ -236,7 +236,7 @@ service.
diff --git a/module-core_service-test-runner_icedfrisby-shields.html b/module-core_service-test-runner_icedfrisby-shields.html
index 758c14886f..e1f9782413 100644
--- a/module-core_service-test-runner_icedfrisby-shields.html
+++ b/module-core_service-test-runner_icedfrisby-shields.html
@@ -292,7 +292,7 @@
diff --git a/module-core_service-test-runner_runner-Runner.html b/module-core_service-test-runner_runner-Runner.html
index 55888a9cc7..a10735e0d0 100644
--- a/module-core_service-test-runner_runner-Runner.html
+++ b/module-core_service-test-runner_runner-Runner.html
@@ -568,7 +568,7 @@ overridden on instances.
diff --git a/module-core_service-test-runner_runner.html b/module-core_service-test-runner_runner.html
index 00fb5c8c72..7655311c34 100644
--- a/module-core_service-test-runner_runner.html
+++ b/module-core_service-test-runner_runner.html
@@ -125,7 +125,7 @@
diff --git a/module-core_service-test-runner_service-tester-ServiceTester.html b/module-core_service-test-runner_service-tester-ServiceTester.html
index 5476338443..2c8bf30e55 100644
--- a/module-core_service-test-runner_service-tester-ServiceTester.html
+++ b/module-core_service-test-runner_service-tester-ServiceTester.html
@@ -1126,7 +1126,7 @@ the CLI, or directly on the tester.
diff --git a/module-core_service-test-runner_service-tester.html b/module-core_service-test-runner_service-tester.html
index 929547bcf5..0f823ba782 100644
--- a/module-core_service-test-runner_service-tester.html
+++ b/module-core_service-test-runner_service-tester.html
@@ -125,7 +125,7 @@
diff --git a/module-core_service-test-runner_services-for-title.html b/module-core_service-test-runner_services-for-title.html
index 3890619ddd..d780f1b915 100644
--- a/module-core_service-test-runner_services-for-title.html
+++ b/module-core_service-test-runner_services-for-title.html
@@ -284,7 +284,7 @@ as an array of strings.
diff --git a/module-core_token-pooling_token-pool-Token.html b/module-core_token-pooling_token-pool-Token.html
index bdabbe32d6..e9c7204473 100644
--- a/module-core_token-pooling_token-pool-Token.html
+++ b/module-core_token-pooling_token-pool-Token.html
@@ -715,7 +715,7 @@ stable ordering for a valid priority queue.
diff --git a/module-core_token-pooling_token-pool-TokenPool.html b/module-core_token-pooling_token-pool-TokenPool.html
index 6929f0ef42..0acf70740e 100644
--- a/module-core_token-pooling_token-pool-TokenPool.html
+++ b/module-core_token-pooling_token-pool-TokenPool.html
@@ -899,7 +899,7 @@ indicate it should not be reused.
diff --git a/module-core_token-pooling_token-pool.html b/module-core_token-pooling_token-pool.html
index 8cdc43eb0d..dc14081a6a 100644
--- a/module-core_token-pooling_token-pool.html
+++ b/module-core_token-pooling_token-pool.html
@@ -291,7 +291,7 @@
diff --git a/module-services_build-status.html b/module-services_build-status.html
index ea57bf1001..1dbfb38eda 100644
--- a/module-services_build-status.html
+++ b/module-services_build-status.html
@@ -453,7 +453,7 @@ Determines the message and color of the badge according to the build status.
diff --git a/module-services_color-formatters.html b/module-services_color-formatters.html
index 02f1cf1d93..6ae9b3de68 100644
--- a/module-services_color-formatters.html
+++ b/module-services_color-formatters.html
@@ -1568,7 +1568,7 @@ The color defaults to red if the score does not matches with any of the grade va
diff --git a/module-services_contributor-count.html b/module-services_contributor-count.html
index c74942d65c..d95c67bbb4 100644
--- a/module-services_contributor-count.html
+++ b/module-services_contributor-count.html
@@ -536,7 +536,7 @@ Determines the message and color of the badge according to the contributor count
diff --git a/module-services_downloads.html b/module-services_downloads.html
index a541a26664..68ed9f7022 100644
--- a/module-services_downloads.html
+++ b/module-services_downloads.html
@@ -546,7 +546,7 @@ this value as the prefix for versioned badges, e.g. foobar@v1.23. D
diff --git a/module-services_dynamic-common.html b/module-services_dynamic-common.html
index 8ff322268c..4e133edbe8 100644
--- a/module-services_dynamic-common.html
+++ b/module-services_dynamic-common.html
@@ -960,7 +960,7 @@ Sets the color of the badge to blue.
diff --git a/module-services_dynamic_json-path.html b/module-services_dynamic_json-path.html
index 7f47398a7e..2b1200d473 100644
--- a/module-services_dynamic_json-path.html
+++ b/module-services_dynamic_json-path.html
@@ -423,7 +423,7 @@ This can be used to extend or override the
diff --git a/module-services_endpoint-common.html b/module-services_endpoint-common.html
index f6e9fa48f5..b69c178917 100644
--- a/module-services_endpoint-common.html
+++ b/module-services_endpoint-common.html
@@ -810,7 +810,7 @@ Optionally it prints those keys in the message to provide detailed feedback.
diff --git a/module-services_licenses.html b/module-services_licenses.html
index bd6fdb107d..45fc4f5f64 100644
--- a/module-services_licenses.html
+++ b/module-services_licenses.html
@@ -650,7 +650,7 @@ Sets the badge color to the provided value, if not provided then the color is us
diff --git a/module-services_package-json-helpers.html b/module-services_package-json-helpers.html
index 0d88c1dcb2..18589ae202 100644
--- a/module-services_package-json-helpers.html
+++ b/module-services_package-json-helpers.html
@@ -656,7 +656,7 @@ Checks if the object has all the dependency types and the dependency types are v
diff --git a/module-services_php-version.html b/module-services_php-version.html
index c61ed04b6a..fdfe17f902 100644
--- a/module-services_php-version.html
+++ b/module-services_php-version.html
@@ -1472,7 +1472,7 @@ Return { numbers: [1,0,something big], modifier: 2, modifierCount: 1 }
diff --git a/module-services_pipenv-helpers.html b/module-services_pipenv-helpers.html
index 063687989c..5b83f834c8 100644
--- a/module-services_pipenv-helpers.html
+++ b/module-services_pipenv-helpers.html
@@ -616,7 +616,7 @@ Checks if the lock file object has required properties and the properties are va
diff --git a/module-services_route-builder.html b/module-services_route-builder.html
index d833de72ec..c780cae7c1 100644
--- a/module-services_route-builder.html
+++ b/module-services_route-builder.html
@@ -621,7 +621,7 @@
diff --git a/module-services_steam_steam-base-BaseSteamAPI.html b/module-services_steam_steam-base-BaseSteamAPI.html
index cd7f793a07..a8650225f7 100644
--- a/module-services_steam_steam-base-BaseSteamAPI.html
+++ b/module-services_steam_steam-base-BaseSteamAPI.html
@@ -380,7 +380,7 @@
diff --git a/module-services_steam_steam-base.html b/module-services_steam_steam-base.html
index e97a78ca00..79baa0ea7d 100644
--- a/module-services_steam_steam-base.html
+++ b/module-services_steam_steam-base.html
@@ -125,7 +125,7 @@
diff --git a/module-services_text-formatters.html b/module-services_text-formatters.html
index d561829f0f..73bc48b108 100644
--- a/module-services_text-formatters.html
+++ b/module-services_text-formatters.html
@@ -1680,7 +1680,7 @@ The remaining stars are empty stars until the maximum number of stars is reached
diff --git a/module-services_validators.html b/module-services_validators.html
index f4909b12a0..6e60fa65c9 100644
--- a/module-services_validators.html
+++ b/module-services_validators.html
@@ -779,7 +779,7 @@ Some invalid values for this validator are: abc, 1.a, 1.0-, .1
diff --git a/module-services_version.html b/module-services_version.html
index 75ad523cdc..ff65347cfa 100644
--- a/module-services_version.html
+++ b/module-services_version.html
@@ -1882,7 +1882,7 @@ slice('2.4', 'patch') // returns null because the version string is not valid ac
diff --git a/module-services_website-status.html b/module-services_website-status.html
index ca4554c266..3cc17c8965 100644
--- a/module-services_website-status.html
+++ b/module-services_website-status.html
@@ -661,7 +661,7 @@ renderWebsiteStatus({ isUp: false }) // returns { message: 'down', color: 'red'
diff --git a/services_build-status.js.html b/services_build-status.js.html
index 1fd627db7b..3514425865 100644
--- a/services_build-status.js.html
+++ b/services_build-status.js.html
@@ -140,7 +140,7 @@ export { isBuildStatus, renderBuildStatusBadge }
diff --git a/services_color-formatters.js.html b/services_color-formatters.js.html
index 2d2a26c0da..4cdbd9b230 100644
--- a/services_color-formatters.js.html
+++ b/services_color-formatters.js.html
@@ -242,7 +242,7 @@ export {
diff --git a/services_contributor-count.js.html b/services_contributor-count.js.html
index 9abeb4613c..3f540cf5f4 100644
--- a/services_contributor-count.js.html
+++ b/services_contributor-count.js.html
@@ -85,7 +85,7 @@ export { contributorColor, renderContributorBadge }
diff --git a/services_downloads.js.html b/services_downloads.js.html
index 1c9ee382e6..7ee69c8602 100644
--- a/services_downloads.js.html
+++ b/services_downloads.js.html
@@ -101,7 +101,7 @@ export { renderDownloadsBadge }
diff --git a/services_dynamic-common.js.html b/services_dynamic-common.js.html
index 8d4a8750af..8ef550ae8a 100644
--- a/services_dynamic-common.js.html
+++ b/services_dynamic-common.js.html
@@ -142,7 +142,7 @@ export {
diff --git a/services_dynamic_json-path.js.html b/services_dynamic_json-path.js.html
index b7b13330de..c91f50a4ec 100644
--- a/services_dynamic_json-path.js.html
+++ b/services_dynamic_json-path.js.html
@@ -111,7 +111,7 @@ export default superclass =>
diff --git a/services_endpoint-common.js.html b/services_endpoint-common.js.html
index 14c9793207..114b69fb0e 100644
--- a/services_endpoint-common.js.html
+++ b/services_endpoint-common.js.html
@@ -154,7 +154,7 @@ export { validateEndpointData, fetchEndpointData }
diff --git a/services_licenses.js.html b/services_licenses.js.html
index 5c9c1c21af..9f249adc5b 100644
--- a/services_licenses.js.html
+++ b/services_licenses.js.html
@@ -201,7 +201,7 @@ export { licenseToColor, renderLicenseBadge }
diff --git a/services_package-json-helpers.js.html b/services_package-json-helpers.js.html
index 9d05d04247..46b7564849 100644
--- a/services_package-json-helpers.js.html
+++ b/services_package-json-helpers.js.html
@@ -120,7 +120,7 @@ export { isDependencyMap, isPackageJsonWithDependencies, getDependencyVersion }
diff --git a/services_packagist_packagist-base.js.html b/services_packagist_packagist-base.js.html
index 715828b5ad..ed6f4d6527 100644
--- a/services_packagist_packagist-base.js.html
+++ b/services_packagist_packagist-base.js.html
@@ -229,7 +229,7 @@ export {
diff --git a/services_php-version.js.html b/services_php-version.js.html
index 5d848420d9..46012b0ec6 100644
--- a/services_php-version.js.html
+++ b/services_php-version.js.html
@@ -341,7 +341,7 @@ export {
diff --git a/services_pipenv-helpers.js.html b/services_pipenv-helpers.js.html
index bd5a3a272d..a0ab3e989e 100644
--- a/services_pipenv-helpers.js.html
+++ b/services_pipenv-helpers.js.html
@@ -128,7 +128,7 @@ export { isLockfile, getDependencyVersion }
diff --git a/services_route-builder.js.html b/services_route-builder.js.html
index 34953892c5..d4f546555b 100644
--- a/services_route-builder.js.html
+++ b/services_route-builder.js.html
@@ -105,7 +105,7 @@ export default class RouteBuilder {
diff --git a/services_steam_steam-base.js.html b/services_steam_steam-base.js.html
index 689ac37bdb..622a41a2a7 100644
--- a/services_steam_steam-base.js.html
+++ b/services_steam_steam-base.js.html
@@ -98,7 +98,7 @@ export default BaseSteamAPI
diff --git a/services_test-helpers.js.html b/services_test-helpers.js.html
index d728c1c521..1cf1351492 100644
--- a/services_test-helpers.js.html
+++ b/services_test-helpers.js.html
@@ -388,7 +388,7 @@ export {
diff --git a/services_test-validators.js.html b/services_test-validators.js.html
index fde725eab1..23f9cdcc74 100644
--- a/services_test-validators.js.html
+++ b/services_test-validators.js.html
@@ -259,7 +259,7 @@ export {
diff --git a/services_text-formatters.js.html b/services_text-formatters.js.html
index 50bbe48533..1be79914d4 100644
--- a/services_text-formatters.js.html
+++ b/services_text-formatters.js.html
@@ -253,7 +253,7 @@ export {
diff --git a/services_thunderstore_thunderstore-base.js.html b/services_thunderstore_thunderstore-base.js.html
index 09cf60614d..93b8a4c420 100644
--- a/services_thunderstore_thunderstore-base.js.html
+++ b/services_thunderstore_thunderstore-base.js.html
@@ -102,7 +102,7 @@ export { BaseThunderstoreService, description }
diff --git a/services_validators.js.html b/services_validators.js.html
index 5a30670afe..a460bc0fc8 100644
--- a/services_validators.js.html
+++ b/services_validators.js.html
@@ -130,7 +130,7 @@ export const relativeUri = Joi.string().uri({ relativeOnly: true })
diff --git a/services_version.js.html b/services_version.js.html
index a604fe3385..224f080b9d 100644
--- a/services_version.js.html
+++ b/services_version.js.html
@@ -299,7 +299,7 @@ export { latest, listCompare, slice, rangeStart, renderVersionBadge }
diff --git a/services_website-status.js.html b/services_website-status.js.html
index a3b0591242..573a3fa876 100644
--- a/services_website-status.js.html
+++ b/services_website-status.js.html
@@ -107,7 +107,7 @@ export { queryParamSchema, queryParams, renderWebsiteStatus }
diff --git a/tutorial-TUTORIAL.html b/tutorial-TUTORIAL.html
index 22e0db675c..bea7f52864 100644
--- a/tutorial-TUTORIAL.html
+++ b/tutorial-TUTORIAL.html
@@ -424,7 +424,7 @@ will review your contribution.
diff --git a/tutorial-adding-new-config-values.html b/tutorial-adding-new-config-values.html
index 00b448728c..21dcb7dd09 100644
--- a/tutorial-adding-new-config-values.html
+++ b/tutorial-adding-new-config-values.html
@@ -60,7 +60,7 @@
diff --git a/tutorial-authentication.html b/tutorial-authentication.html
index 07ae116f46..7d5e627e63 100644
--- a/tutorial-authentication.html
+++ b/tutorial-authentication.html
@@ -48,7 +48,7 @@
diff --git a/tutorial-badge-urls.html b/tutorial-badge-urls.html
index bc88fa8037..33044bfc19 100644
--- a/tutorial-badge-urls.html
+++ b/tutorial-badge-urls.html
@@ -83,7 +83,7 @@ badge is for issues, and the parameters are :user/:repo.
diff --git a/tutorial-code-walkthrough.html b/tutorial-code-walkthrough.html
index 4411fbe416..be081c1bea 100644
--- a/tutorial-code-walkthrough.html
+++ b/tutorial-code-walkthrough.html
@@ -235,7 +235,7 @@ result over the HTTPS connection.
diff --git a/tutorial-deprecating-badges.html b/tutorial-deprecating-badges.html
index 4febf53158..dd235b32cb 100644
--- a/tutorial-deprecating-badges.html
+++ b/tutorial-deprecating-badges.html
@@ -155,7 +155,7 @@ t.create('no longer available (previously number of layers)')
diff --git a/tutorial-input-validation.html b/tutorial-input-validation.html
index 46b3c6d7c3..6349ba9c83 100644
--- a/tutorial-input-validation.html
+++ b/tutorial-input-validation.html
@@ -106,7 +106,7 @@
diff --git a/tutorial-json-format.html b/tutorial-json-format.html
index 55df78c70e..2582d928fb 100644
--- a/tutorial-json-format.html
+++ b/tutorial-json-format.html
@@ -60,7 +60,7 @@ if you have any queries regarding the JSON format.
diff --git a/tutorial-performance-testing.html b/tutorial-performance-testing.html
index 80ce21df18..886c7dd2a2 100644
--- a/tutorial-performance-testing.html
+++ b/tutorial-performance-testing.html
@@ -76,7 +76,7 @@ node --prof-process --preprocess -j isolate-00000244AB6ED3B0-11920-v8.log | flam
diff --git a/tutorial-production-hosting.html b/tutorial-production-hosting.html
index 6031bffd97..105b3248e9 100644
--- a/tutorial-production-hosting.html
+++ b/tutorial-production-hosting.html
@@ -212,7 +212,7 @@ via local-shields-io-production.yml (see
diff --git a/tutorial-releases.html b/tutorial-releases.html
index 0e7227f3c2..60db2ed38f 100644
--- a/tutorial-releases.html
+++ b/tutorial-releases.html
@@ -79,7 +79,7 @@
diff --git a/tutorial-self-hosting.html b/tutorial-self-hosting.html
index 981de214e8..c2a70b9225 100644
--- a/tutorial-self-hosting.html
+++ b/tutorial-self-hosting.html
@@ -182,7 +182,7 @@ Set public.requireCloudflare: true.
diff --git a/tutorial-server-secrets.html b/tutorial-server-secrets.html
index dff183f1b0..6365a5e9db 100644
--- a/tutorial-server-secrets.html
+++ b/tutorial-server-secrets.html
@@ -331,7 +331,7 @@ and create an API key for the YouTube Data API v3.
diff --git a/tutorial-service-tests.html b/tutorial-service-tests.html
index bda1cbaa9f..1e8d562fad 100644
--- a/tutorial-service-tests.html
+++ b/tutorial-service-tests.html
@@ -229,7 +229,7 @@ comment there instead.
diff --git a/tutorial-static-badges.html b/tutorial-static-badges.html
index 4ea3a5730c..c7db76c7e2 100644
--- a/tutorial-static-badges.html
+++ b/tutorial-static-badges.html
@@ -42,7 +42,7 @@