diff --git a/getarticles.go b/getarticles.go index 6ea90ac..abbed7e 100644 --- a/getarticles.go +++ b/getarticles.go @@ -216,7 +216,7 @@ func getArticles(feedURL string, max int, noExcerpt bool) (string, error) { description = "" // Fill article description/content with the fragments separated by one newline. for _, line := range fragments { - description = description + line + "n" + description = description + line + "\n" } // Only append article link if it is not yet contained in description (e.g. read more: URL).