You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
**Html Renderer** is a plugin that adds support for rendering html in chat bubbles within the [**React ChatBotify Core Library**](https://react-chatbotify.com). By default, the core library does not ship with html support. This plugin relies on chatbot events to intercept messages and determine if html rendering logic has to be applied. The demo gif above should give you a pretty good idea of what this plugin is capable of doing.
@@ -63,7 +63,7 @@ The plugin is incredibly straightforward to use and is [**available on npm**](ht
63
63
constMyComponent= () => {
64
64
constflow= {
65
65
start: {
66
-
message:"### What is your age?",
66
+
message:"<h4>What is your age?</h4>",
67
67
renderHtml: ["BOT", "USER"]
68
68
} as HtmlRendererBlock
69
69
}
@@ -123,7 +123,7 @@ import HtmlRenderer from "@rcb-plugins/html-renderer";
0 commit comments