From 12f7c183620469af0016f74685b990d27f8b687c Mon Sep 17 00:00:00 2001 From: Pier-Paolo Mammi Date: Mon, 29 Jun 2026 13:53:50 +0200 Subject: [PATCH] fix starting @ to commented variables --- scripts/generate-http-docs.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/generate-http-docs.js b/scripts/generate-http-docs.js index 03688e2..cc5d6d0 100644 --- a/scripts/generate-http-docs.js +++ b/scripts/generate-http-docs.js @@ -479,7 +479,7 @@ export function buildRequestContent(request, requestName, requestConfig = {}, do if (commentedVariableDefinitions.length > 0) { lines.push(`# Other variables for ${requestName}`); for (const variable of commentedVariableDefinitions) { - lines.push(`# ${sanitizeVarName(variable.name)}${VARIABLE_NAME_VALUE_SEPARATOR}${formatVariableValue(variable.value, { renderValue })}`); + lines.push(`# @${sanitizeVarName(variable.name)}${VARIABLE_NAME_VALUE_SEPARATOR}${formatVariableValue(variable.value, { renderValue })}`); } }