Skip to content

Commit df9cde1

Browse files
committed
Fix Command Help Output.
1 parent 74fbea2 commit df9cde1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/commands/help.commands.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ export const getSpecificCommandHelp = (commandName: string): string => {
173173
}
174174

175175
// Start building a detailed help display for the command
176-
let helpContent = `<div class="command-help">\n`;
176+
let helpContent = `<div class="command-help">`;
177177

178178
// Command title and basic information
179179
helpContent += `<div>Command: <span class="text-terminal-prompt">${commandName}</span></div>`;
@@ -236,7 +236,7 @@ export const getSpecificCommandHelp = (commandName: string): string => {
236236
}
237237

238238
// Close the command-help div
239-
helpContent += `</div>\n`;
239+
helpContent += `</div>`;
240240

241241
helpLogger.debug('Generated specific command help', { commandName });
242242
return helpContent;

0 commit comments

Comments
 (0)