From 0473b3f30f8b45059eac91504df8985a8908829b Mon Sep 17 00:00:00 2001 From: "Sakthipriyan Vairamani (thefourtheye)" Date: Tue, 31 Jan 2017 00:14:59 +0530 Subject: [PATCH] doc: replace newlines in deprecation with space As it is, each line in the deprecation heading which are wrapped at 80 characters in the *.md files, are shown in different lines. For example > Stability: 0 - Deprecated: Use > `Buffer.from(arrayBuffer[, byteOffset [, length]])` > instead. is shown in three different lines. This patch replaces the newlines with space characters, so that the output will be in single line. --- tools/doc/html.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/doc/html.js b/tools/doc/html.js index 4b1c0a0e69b2c1..3dd6f83da503df 100644 --- a/tools/doc/html.js +++ b/tools/doc/html.js @@ -208,7 +208,7 @@ function parseLists(input) { headingIndex = -1; heading = null; } - tok.text = parseAPIHeader(tok.text); + tok.text = parseAPIHeader(tok.text).replace(/\n/g, ' '); output.push({ type: 'html', text: tok.text }); return; } else if (state === 'MAYBE_STABILITY_BQ') {