handle code blocks in telegram.
This commit is contained in:
@@ -451,5 +451,9 @@ func (b *Btelegram) handleEntities(rmsg *config.Message, message *tgbotapi.Messa
|
|||||||
link := utf16.Decode(utfEncodedString[e.Offset : e.Offset+e.Length])
|
link := utf16.Decode(utfEncodedString[e.Offset : e.Offset+e.Length])
|
||||||
rmsg.Text = strings.Replace(rmsg.Text, string(link), url.String(), 1)
|
rmsg.Text = strings.Replace(rmsg.Text, string(link), url.String(), 1)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if e.Type == "code" {
|
||||||
|
rmsg.Text = "`" + rmsg.Text + "`"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user