diff --git a/scripts/generate-api-docs.mjs b/scripts/generate-api-docs.mjs index b927b69b..6962a4d1 100644 --- a/scripts/generate-api-docs.mjs +++ b/scripts/generate-api-docs.mjs @@ -914,7 +914,11 @@ function renderParam(field, indent) { const lines = [head]; if (desc) { - lines.push(`${indent} ${escapeJsxText(desc)}`); + const escaped = escapeJsxText(desc); + const descLines = escaped.split('\n'); + for (const dl of descLines) { + lines.push(dl.length ? `${indent} ${dl}` : ''); + } } if (Array.isArray(nested) && nested.length > 0) { diff --git a/vendor/postman b/vendor/postman index f2b8cdb3..f00acb05 160000 --- a/vendor/postman +++ b/vendor/postman @@ -1 +1 @@ -Subproject commit f2b8cdb35fc849507a7fd42cfd3c146cd2b6ec53 +Subproject commit f00acb05d7da53f1b58a72e21df257bc4935df44