From c622dc9f51c28ffe49045ab5a8630a48d82644bf Mon Sep 17 00:00:00 2001 From: syneva-providence Date: Thu, 30 Nov 2023 20:55:26 -0900 Subject: [PATCH] Fixed broken renderMarkdown link in HOOKS documentation --- docs/HOOKS.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/HOOKS.md b/docs/HOOKS.md index 27e635a517..af09ace5f4 100644 --- a/docs/HOOKS.md +++ b/docs/HOOKS.md @@ -881,7 +881,7 @@ renderMarkdown('Hello, World!') === '

Hello, World!

\n'; ``` -The Markdown engine can be reconfigured by passing `renderMarkdown` prop to Web Chat. The default engine is a customized [Markdown-It](https://npmjs.com/package/markdown-it) with [HTML sanitizer](https://npmjs.com/package/sanitize-html) and [support `aria-label` attribute](https://npmjs.com/package/markdown-it-attrs). The customization can be found in [bundle/src/renderMarkdown.js](https://github.com/microsoft/BotFramework-WebChat/tree/main/packages/bundle/src/renderMarkdown.js). +The Markdown engine can be reconfigured by passing `renderMarkdown` prop to Web Chat. The default engine is a customized [Markdown-It](https://npmjs.com/package/markdown-it) with [HTML sanitizer](https://npmjs.com/package/sanitize-html) and [support `aria-label` attribute](https://npmjs.com/package/markdown-it-attrs). The customization can be found in [bundle/src/markdown/renderMarkdown.ts](https://github.com/microsoft/BotFramework-WebChat/tree/main/packages/bundle/src/markdown/renderMarkdown.ts). ## `useRenderToast`