File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed
packages/core/src/codewhispererChat/controllers/chat/messenger Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -93,7 +93,10 @@ export class Messenger {
9393 }
9494 /**
9595 * Guesses the total number of code blocks.
96- * NOTE: Not correct on all examples. Some may cause it to return 0 unexpectedly.
96+ * NOTES:
97+ * - Not correct on all examples. Some may cause it to return 0 unexpectedly.
98+ * - Plans in place (as of 4/22/2024) to move this server side.
99+ * - See original pr: https://github.com/aws/aws-toolkit-vscode/pull/4761 for more details.
97100 * @param message raw message response from codewhisperer client.
98101 * @returns count of multi-line code blocks in response.
99102 */
@@ -103,7 +106,7 @@ export class Messenger {
103106 return 0
104107 }
105108
106- // // To Convert Markdown text to HTML using marked library
109+ // To Convert Markdown text to HTML using marked library
107110 const html = await marked ( message )
108111
109112 const dom = new JSDOM ( html )
You can’t perform that action at this time.
0 commit comments