Custom function html2text.

master
Uriel Fanelli 2023-08-07 20:20:29 +02:00
parent 0eb73d75a8
commit df43f758e9
1 changed files with 12 additions and 3 deletions

15
feed.go
View File

@ -7,7 +7,8 @@ import (
"os"
"time"
strip "github.com/grokify/html-strip-tags-go"
"regexp"
"github.com/mmcdole/gofeed"
)
@ -50,8 +51,8 @@ func forwardLastFeed(url string) {
if time.Since(postAge) < Zint {
TheTitle := fmt.Sprintf("[News from %s ]", strip.StripTags(feed.Title))
TheBody := fmt.Sprintf("%s\n\n %s\n\n %s\n\n%s\n ", strip.StripTags(b.Author.Name), strip.StripTags(b.Title), strip.StripTags(b.Description), b.Link)
TheTitle := fmt.Sprintf("[News from %s ]", html2text(feed.Title))
TheBody := fmt.Sprintf("%s\n\n %s\n\n %s\n\n%s\n ", html2text(b.Author.Name), html2text(b.Title), html2text(b.Description), b.Link)
postOnMastodon(TheBody, TheTitle)
log.Println("New content from: ", feed.Title, b.Title, feed.Description)
@ -108,3 +109,11 @@ func fileByLines(filename string) (blurls []string) {
return
}
func html2text(html string) string {
re := regexp.MustCompile(`<[^>]*>`)
return re.ReplaceAllString(html, "")
}