aboutsummaryrefslogtreecommitdiff
path: root/matrix/matrix.go
diff options
context:
space:
mode:
Diffstat (limited to 'matrix/matrix.go')
-rw-r--r--matrix/matrix.go16
1 files changed, 13 insertions, 3 deletions
diff --git a/matrix/matrix.go b/matrix/matrix.go
index ef5ef8a..226df6c 100644
--- a/matrix/matrix.go
+++ b/matrix/matrix.go
@@ -729,9 +729,19 @@ func (c *Container) MarkRead(roomID, eventID string) {
_, _ = c.client.MakeRequest("POST", urlPath, struct{}{}, nil)
}
-func (c *Container) PrepareMarkdownMessage(roomID string, msgtype mautrix.MessageType, text string, rel *ifc.Relation) *event.Event {
- content := format.RenderMarkdown(text)
- content.MsgType = msgtype
+func (c *Container) PrepareMarkdownMessage(roomID string, msgtype mautrix.MessageType, text, html string, rel *ifc.Relation) *event.Event {
+ var content mautrix.Content
+ if html != "" {
+ content = mautrix.Content{
+ FormattedBody: html,
+ Format: mautrix.FormatHTML,
+ Body: text,
+ MsgType: msgtype,
+ }
+ } else {
+ content = format.RenderMarkdown(text)
+ content.MsgType = msgtype
+ }
if rel != nil && rel.Type == mautrix.RelReplace {
contentCopy := content