mirror of
https://git.keinpfusch.net/loweel/zorg
synced 2024-12-18 09:58:34 +01:00
Custom function html2text.
This commit is contained in:
parent
0eb73d75a8
commit
df43f758e9
15
feed.go
15
feed.go
@ -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, "")
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user