2021-07-26 19:25:54 +01:00
|
|
|
/*
|
|
|
|
GoToSocial
|
2021-12-20 17:42:19 +00:00
|
|
|
Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
|
2021-07-26 19:25:54 +01:00
|
|
|
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU Affero General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU Affero General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Affero General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
package text
|
|
|
|
|
|
|
|
import (
|
2021-08-25 14:34:33 +01:00
|
|
|
"context"
|
|
|
|
|
2021-07-26 19:25:54 +01:00
|
|
|
"github.com/russross/blackfriday/v2"
|
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/gtsmodel"
|
2022-08-07 17:19:16 +01:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/log"
|
|
|
|
"github.com/tdewolff/minify/v2"
|
|
|
|
"github.com/tdewolff/minify/v2/html"
|
2021-07-26 19:25:54 +01:00
|
|
|
)
|
|
|
|
|
2022-08-07 17:19:16 +01:00
|
|
|
var m *minify.M
|
2021-07-26 19:25:54 +01:00
|
|
|
|
2022-08-07 17:19:16 +01:00
|
|
|
func (f *formatter) FromMarkdown(ctx context.Context, md string, mentions []*gtsmodel.Mention, tags []*gtsmodel.Tag) string {
|
2021-07-26 19:25:54 +01:00
|
|
|
// format tags nicely
|
2022-08-07 17:19:16 +01:00
|
|
|
content := f.ReplaceTags(ctx, md, tags)
|
2021-07-29 12:18:22 +01:00
|
|
|
|
|
|
|
// format mentions nicely
|
2021-08-25 14:34:33 +01:00
|
|
|
content = f.ReplaceMentions(ctx, content, mentions)
|
2021-07-26 19:25:54 +01:00
|
|
|
|
2022-08-07 17:19:16 +01:00
|
|
|
// parse markdown
|
|
|
|
contentBytes := blackfriday.Run([]byte(content))
|
|
|
|
|
|
|
|
// clean anything dangerous out of it
|
|
|
|
content = SanitizeHTML(string(contentBytes))
|
|
|
|
|
|
|
|
if m == nil {
|
|
|
|
m = minify.New()
|
|
|
|
m.Add("text/html", &html.Minifier{
|
|
|
|
KeepEndTags: true,
|
|
|
|
KeepQuotes: true,
|
|
|
|
KeepWhitespace: true,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
minified, err := m.String("text/html", content)
|
|
|
|
if err != nil {
|
|
|
|
log.Errorf("error minifying markdown text: %s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return minified
|
2021-07-26 19:25:54 +01:00
|
|
|
}
|