mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-10 06:20:28 +00:00
04567c765e
This uses our own gomatrix lib with the SendHTML function which adds HTML to formatted_body in matrix. golang-commonmark is used to convert markdown into valid HTML.
10 lines
115 B
Go
10 lines
115 B
Go
//+build gofuzz
|
|
|
|
package markdown
|
|
|
|
func Fuzz(data []byte) int {
|
|
md := New(HTML(true))
|
|
md.Parse(data)
|
|
return 1
|
|
}
|