Is your feature request related to a problem? Please describe.
The MatrixClient.ts's replyNotice() function doesn't supports markdown formatting.
Describe the solution you'd like
When I design responses in markdown, it should parse and display it correctly.
Currently, a call like this:
return await client.replyNotice(
roomId,
event,
"Width & height parameter **must be less than or equal to 1000**."
);
Returns: Width & height parameter **must be less than or equal to 1000**.
Instead of returning the text in bold.
Describe alternatives you've considered
Using an external markdown formatter package or ˙replyHtmlNotice() ̇, but it isn't as practical.
Additional context
Is your feature request related to a problem? Please describe.
The
MatrixClient.ts'sreplyNotice()function doesn't supports markdown formatting.Describe the solution you'd like
When I design responses in markdown, it should parse and display it correctly.
Currently, a call like this:
Returns:
Width & height parameter **must be less than or equal to 1000**.Instead of returning the text in bold.
Describe alternatives you've considered
Using an external markdown formatter package or ˙replyHtmlNotice() ̇, but it isn't as practical.
Additional context