Skip to content

Commit 350963e

Browse files
committed
fix(web): remove v prefix from version in page title
Aligns with the Node.js documentation style guide which specifies version references should not include the v prefix. Closes #722
1 parent 91081a3 commit 350963e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/generators/web/utils/processing.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ export async function processJSXEntries(
107107
bundleCode(clientCodeMap),
108108
]);
109109

110-
const titleSuffix = `Node.js v${version.version} Documentation`;
110+
const titleSuffix = `Node.js ${version.version} Documentation`;
111111

112112
// Step 3: Create final HTML (could be parallelized in workers)
113113
const results = await Promise.all(

0 commit comments

Comments
 (0)