Skip to content

Commit 797c8d3

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 63c24b9 commit 797c8d3

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
@@ -98,7 +98,7 @@ export async function processJSXEntries(entries, template) {
9898
bundleCode(clientCodeMap, virtualImports),
9999
]);
100100

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

103103
// Step 3: Render final HTML pages
104104
const results = await Promise.all(

0 commit comments

Comments
 (0)