2023-06-19 23:42:47 +02:00
|
|
|
// SPDX-FileCopyrightText: Copyright The Miniflux Authors. All rights reserved.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0
|
2017-12-12 07:16:32 +01:00
|
|
|
|
2023-08-11 04:46:45 +02:00
|
|
|
package rewrite // import "miniflux.app/v2/internal/reader/rewrite"
|
2017-12-12 07:16:32 +01:00
|
|
|
|
|
|
|
import (
|
2022-05-26 05:44:04 +02:00
|
|
|
"encoding/base64"
|
2017-12-14 06:30:40 +01:00
|
|
|
"fmt"
|
2019-08-14 09:33:54 +02:00
|
|
|
"html"
|
2023-09-25 01:32:09 +02:00
|
|
|
"log/slog"
|
2019-08-13 17:44:23 +02:00
|
|
|
"net/url"
|
2017-12-12 07:16:32 +01:00
|
|
|
"regexp"
|
|
|
|
"strings"
|
|
|
|
|
2023-08-11 04:46:45 +02:00
|
|
|
"miniflux.app/v2/internal/config"
|
2022-01-06 05:43:03 +01:00
|
|
|
|
2017-12-12 07:16:32 +01:00
|
|
|
"github.com/PuerkitoBio/goquery"
|
2022-07-27 16:55:28 +02:00
|
|
|
"github.com/yuin/goldmark"
|
|
|
|
goldmarkhtml "github.com/yuin/goldmark/renderer/html"
|
2017-12-12 07:16:32 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
2022-01-03 16:47:10 +01:00
|
|
|
youtubeRegex = regexp.MustCompile(`youtube\.com/watch\?v=(.*)`)
|
|
|
|
youtubeIdRegex = regexp.MustCompile(`youtube_id"?\s*[:=]\s*"([a-zA-Z0-9_-]{11})"`)
|
|
|
|
invidioRegex = regexp.MustCompile(`https?:\/\/(.*)\/watch\?v=(.*)`)
|
|
|
|
imgRegex = regexp.MustCompile(`<img [^>]+>`)
|
|
|
|
textLinkRegex = regexp.MustCompile(`(?mi)(\bhttps?:\/\/[-A-Z0-9+&@#\/%?=~_|!:,.;]*[-A-Z0-9+&@#\/%=~_|])`)
|
2017-12-12 07:16:32 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
func addImageTitle(entryURL, entryContent string) string {
|
|
|
|
doc, err := goquery.NewDocumentFromReader(strings.NewReader(entryContent))
|
|
|
|
if err != nil {
|
|
|
|
return entryContent
|
|
|
|
}
|
|
|
|
|
2018-06-26 23:39:56 +02:00
|
|
|
matches := doc.Find("img[src][title]")
|
|
|
|
|
|
|
|
if matches.Length() > 0 {
|
|
|
|
matches.Each(func(i int, img *goquery.Selection) {
|
|
|
|
altAttr := img.AttrOr("alt", "")
|
|
|
|
srcAttr, _ := img.Attr("src")
|
|
|
|
titleAttr, _ := img.Attr("title")
|
|
|
|
|
2019-08-14 09:33:54 +02:00
|
|
|
img.ReplaceWithHtml(`<figure><img src="` + srcAttr + `" alt="` + altAttr + `"/><figcaption><p>` + html.EscapeString(titleAttr) + `</p></figcaption></figure>`)
|
2018-06-26 23:39:56 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
output, _ := doc.Find("body").First().Html()
|
|
|
|
return output
|
2017-12-12 07:16:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return entryContent
|
|
|
|
}
|
|
|
|
|
2019-08-13 17:44:23 +02:00
|
|
|
func addMailtoSubject(entryURL, entryContent string) string {
|
|
|
|
doc, err := goquery.NewDocumentFromReader(strings.NewReader(entryContent))
|
|
|
|
if err != nil {
|
|
|
|
return entryContent
|
|
|
|
}
|
|
|
|
|
|
|
|
matches := doc.Find(`a[href^="mailto:"]`)
|
|
|
|
|
|
|
|
if matches.Length() > 0 {
|
|
|
|
matches.Each(func(i int, a *goquery.Selection) {
|
|
|
|
hrefAttr, _ := a.Attr("href")
|
|
|
|
|
|
|
|
mailto, err := url.Parse(hrefAttr)
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
subject := mailto.Query().Get("subject")
|
|
|
|
if subject == "" {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
a.AppendHtml(" [" + html.EscapeString(subject) + "]")
|
|
|
|
})
|
|
|
|
|
|
|
|
output, _ := doc.Find("body").First().Html()
|
|
|
|
return output
|
|
|
|
}
|
|
|
|
|
|
|
|
return entryContent
|
|
|
|
}
|
|
|
|
|
2018-07-09 07:22:48 +02:00
|
|
|
func addDynamicImage(entryURL, entryContent string) string {
|
|
|
|
doc, err := goquery.NewDocumentFromReader(strings.NewReader(entryContent))
|
|
|
|
if err != nil {
|
|
|
|
return entryContent
|
|
|
|
}
|
|
|
|
|
|
|
|
// Ordered most preferred to least preferred.
|
|
|
|
candidateAttrs := []string{
|
|
|
|
"data-src",
|
|
|
|
"data-original",
|
|
|
|
"data-orig",
|
|
|
|
"data-url",
|
|
|
|
"data-orig-file",
|
|
|
|
"data-large-file",
|
|
|
|
"data-medium-file",
|
2024-01-21 08:59:08 +01:00
|
|
|
"data-original-mos",
|
2018-07-09 07:22:48 +02:00
|
|
|
"data-2000src",
|
|
|
|
"data-1000src",
|
|
|
|
"data-800src",
|
|
|
|
"data-655src",
|
|
|
|
"data-500src",
|
|
|
|
"data-380src",
|
|
|
|
}
|
|
|
|
|
2021-10-23 03:12:23 +02:00
|
|
|
candidateSrcsetAttrs := []string{
|
|
|
|
"data-srcset",
|
|
|
|
}
|
|
|
|
|
2018-07-09 07:22:48 +02:00
|
|
|
changed := false
|
|
|
|
|
|
|
|
doc.Find("img,div").Each(func(i int, img *goquery.Selection) {
|
2021-10-23 03:12:23 +02:00
|
|
|
// Src-linked candidates
|
2018-07-09 07:22:48 +02:00
|
|
|
for _, candidateAttr := range candidateAttrs {
|
|
|
|
if srcAttr, found := img.Attr(candidateAttr); found {
|
|
|
|
changed = true
|
|
|
|
|
|
|
|
if img.Is("img") {
|
2018-08-25 06:51:50 +02:00
|
|
|
img.SetAttr("src", srcAttr)
|
2018-07-09 07:22:48 +02:00
|
|
|
} else {
|
|
|
|
altAttr := img.AttrOr("alt", "")
|
|
|
|
img.ReplaceWithHtml(`<img src="` + srcAttr + `" alt="` + altAttr + `"/>`)
|
|
|
|
}
|
|
|
|
|
2018-08-25 06:51:50 +02:00
|
|
|
break
|
2018-07-09 07:22:48 +02:00
|
|
|
}
|
|
|
|
}
|
2021-10-23 03:12:23 +02:00
|
|
|
|
|
|
|
// Srcset-linked candidates
|
|
|
|
for _, candidateAttr := range candidateSrcsetAttrs {
|
|
|
|
if srcAttr, found := img.Attr(candidateAttr); found {
|
|
|
|
changed = true
|
|
|
|
|
|
|
|
if img.Is("img") {
|
|
|
|
img.SetAttr("srcset", srcAttr)
|
|
|
|
} else {
|
|
|
|
altAttr := img.AttrOr("alt", "")
|
|
|
|
img.ReplaceWithHtml(`<img srcset="` + srcAttr + `" alt="` + altAttr + `"/>`)
|
|
|
|
}
|
|
|
|
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
2018-07-09 07:22:48 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
if !changed {
|
|
|
|
doc.Find("noscript").Each(func(i int, noscript *goquery.Selection) {
|
|
|
|
matches := imgRegex.FindAllString(noscript.Text(), 2)
|
|
|
|
|
|
|
|
if len(matches) == 1 {
|
|
|
|
changed = true
|
|
|
|
|
|
|
|
noscript.ReplaceWithHtml(matches[0])
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
if changed {
|
|
|
|
output, _ := doc.Find("body").First().Html()
|
|
|
|
return output
|
|
|
|
}
|
|
|
|
|
|
|
|
return entryContent
|
|
|
|
}
|
|
|
|
|
2024-01-22 03:28:21 +01:00
|
|
|
func addDynamicIframe(entryURL, entryContent string) string {
|
|
|
|
doc, err := goquery.NewDocumentFromReader(strings.NewReader(entryContent))
|
|
|
|
if err != nil {
|
|
|
|
return entryContent
|
|
|
|
}
|
|
|
|
|
|
|
|
// Ordered most preferred to least preferred.
|
|
|
|
candidateAttrs := []string{
|
|
|
|
"data-src",
|
|
|
|
"data-original",
|
|
|
|
"data-orig",
|
|
|
|
"data-url",
|
|
|
|
"data-lazy-src",
|
|
|
|
}
|
|
|
|
|
|
|
|
changed := false
|
|
|
|
|
|
|
|
doc.Find("iframe").Each(func(i int, iframe *goquery.Selection) {
|
|
|
|
for _, candidateAttr := range candidateAttrs {
|
|
|
|
if srcAttr, found := iframe.Attr(candidateAttr); found {
|
|
|
|
changed = true
|
|
|
|
|
|
|
|
iframe.SetAttr("src", srcAttr)
|
|
|
|
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
if changed {
|
|
|
|
output, _ := doc.Find("body").First().Html()
|
|
|
|
return output
|
|
|
|
}
|
|
|
|
|
|
|
|
return entryContent
|
|
|
|
}
|
|
|
|
|
2020-09-30 07:22:25 +02:00
|
|
|
func fixMediumImages(entryURL, entryContent string) string {
|
|
|
|
doc, err := goquery.NewDocumentFromReader(strings.NewReader(entryContent))
|
|
|
|
if err != nil {
|
|
|
|
return entryContent
|
|
|
|
}
|
|
|
|
|
|
|
|
doc.Find("figure.paragraph-image").Each(func(i int, paragraphImage *goquery.Selection) {
|
|
|
|
noscriptElement := paragraphImage.Find("noscript")
|
2020-10-20 06:04:14 +02:00
|
|
|
if noscriptElement.Length() > 0 {
|
|
|
|
paragraphImage.ReplaceWithHtml(noscriptElement.Text())
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
output, _ := doc.Find("body").First().Html()
|
|
|
|
return output
|
|
|
|
}
|
|
|
|
|
|
|
|
func useNoScriptImages(entryURL, entryContent string) string {
|
|
|
|
doc, err := goquery.NewDocumentFromReader(strings.NewReader(entryContent))
|
|
|
|
if err != nil {
|
|
|
|
return entryContent
|
|
|
|
}
|
|
|
|
|
|
|
|
doc.Find("figure").Each(func(i int, figureElement *goquery.Selection) {
|
|
|
|
imgElement := figureElement.Find("img")
|
|
|
|
if imgElement.Length() > 0 {
|
|
|
|
noscriptElement := figureElement.Find("noscript")
|
|
|
|
if noscriptElement.Length() > 0 {
|
|
|
|
figureElement.PrependHtml(noscriptElement.Text())
|
|
|
|
imgElement.Remove()
|
|
|
|
noscriptElement.Remove()
|
|
|
|
}
|
|
|
|
}
|
2020-09-30 07:22:25 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
output, _ := doc.Find("body").First().Html()
|
|
|
|
return output
|
|
|
|
}
|
|
|
|
|
2017-12-12 07:16:32 +01:00
|
|
|
func addYoutubeVideo(entryURL, entryContent string) string {
|
|
|
|
matches := youtubeRegex.FindStringSubmatch(entryURL)
|
|
|
|
|
|
|
|
if len(matches) == 2 {
|
2023-07-05 17:11:56 +02:00
|
|
|
video := `<iframe width="650" height="350" frameborder="0" src="` + config.Opts.YouTubeEmbedUrlOverride() + matches[1] + `" allowfullscreen></iframe>`
|
2019-12-01 07:46:12 +01:00
|
|
|
return video + `<br>` + entryContent
|
2017-12-12 07:16:32 +01:00
|
|
|
}
|
|
|
|
return entryContent
|
|
|
|
}
|
2017-12-14 06:30:40 +01:00
|
|
|
|
2020-03-21 04:45:37 +01:00
|
|
|
func addYoutubeVideoUsingInvidiousPlayer(entryURL, entryContent string) string {
|
|
|
|
matches := youtubeRegex.FindStringSubmatch(entryURL)
|
|
|
|
|
|
|
|
if len(matches) == 2 {
|
2022-01-06 05:43:03 +01:00
|
|
|
video := `<iframe width="650" height="350" frameborder="0" src="https://` + config.Opts.InvidiousInstance() + `/embed/` + matches[1] + `" allowfullscreen></iframe>`
|
2020-03-21 04:45:37 +01:00
|
|
|
return video + `<br>` + entryContent
|
|
|
|
}
|
|
|
|
return entryContent
|
|
|
|
}
|
|
|
|
|
2022-01-03 16:47:10 +01:00
|
|
|
func addYoutubeVideoFromId(entryContent string) string {
|
|
|
|
matches := youtubeIdRegex.FindAllStringSubmatch(entryContent, -1)
|
|
|
|
if matches == nil {
|
|
|
|
return entryContent
|
|
|
|
}
|
|
|
|
sb := strings.Builder{}
|
|
|
|
for _, match := range matches {
|
|
|
|
if len(match) == 2 {
|
2023-07-05 17:11:56 +02:00
|
|
|
sb.WriteString(`<iframe width="650" height="350" frameborder="0" src="`)
|
|
|
|
sb.WriteString(config.Opts.YouTubeEmbedUrlOverride())
|
2022-01-03 16:47:10 +01:00
|
|
|
sb.WriteString(match[1])
|
|
|
|
sb.WriteString(`" allowfullscreen></iframe><br>`)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
sb.WriteString(entryContent)
|
|
|
|
return sb.String()
|
|
|
|
}
|
|
|
|
|
2020-03-21 04:45:37 +01:00
|
|
|
func addInvidiousVideo(entryURL, entryContent string) string {
|
|
|
|
matches := invidioRegex.FindStringSubmatch(entryURL)
|
2020-09-06 22:41:42 +02:00
|
|
|
if len(matches) == 3 {
|
|
|
|
video := `<iframe width="650" height="350" frameborder="0" src="https://` + matches[1] + `/embed/` + matches[2] + `" allowfullscreen></iframe>`
|
2020-03-21 04:45:37 +01:00
|
|
|
return video + `<br>` + entryContent
|
|
|
|
}
|
|
|
|
return entryContent
|
|
|
|
}
|
|
|
|
|
2017-12-14 06:30:40 +01:00
|
|
|
func addPDFLink(entryURL, entryContent string) string {
|
|
|
|
if strings.HasSuffix(entryURL, ".pdf") {
|
|
|
|
return fmt.Sprintf(`<a href="%s">PDF</a><br>%s`, entryURL, entryContent)
|
|
|
|
}
|
|
|
|
return entryContent
|
|
|
|
}
|
2018-10-09 05:47:10 +02:00
|
|
|
|
|
|
|
func replaceTextLinks(input string) string {
|
|
|
|
return textLinkRegex.ReplaceAllString(input, `<a href="${1}">${1}</a>`)
|
|
|
|
}
|
|
|
|
|
|
|
|
func replaceLineFeeds(input string) string {
|
|
|
|
return strings.Replace(input, "\n", "<br>", -1)
|
|
|
|
}
|
2020-11-25 23:51:54 +01:00
|
|
|
|
|
|
|
func replaceCustom(entryContent string, searchTerm string, replaceTerm string) string {
|
|
|
|
re, err := regexp.Compile(searchTerm)
|
|
|
|
if err == nil {
|
|
|
|
return re.ReplaceAllString(entryContent, replaceTerm)
|
|
|
|
}
|
|
|
|
return entryContent
|
|
|
|
}
|
2021-09-01 23:42:23 +02:00
|
|
|
|
|
|
|
func removeCustom(entryContent string, selector string) string {
|
|
|
|
doc, err := goquery.NewDocumentFromReader(strings.NewReader(entryContent))
|
|
|
|
if err != nil {
|
|
|
|
return entryContent
|
|
|
|
}
|
|
|
|
|
|
|
|
doc.Find(selector).Remove()
|
|
|
|
|
|
|
|
output, _ := doc.Find("body").First().Html()
|
|
|
|
return output
|
|
|
|
}
|
2022-01-30 09:11:43 +01:00
|
|
|
|
|
|
|
func addCastopodEpisode(entryURL, entryContent string) string {
|
|
|
|
player := `<iframe width="650" frameborder="0" src="` + entryURL + `/embed/light"></iframe>`
|
|
|
|
|
|
|
|
return player + `<br>` + entryContent
|
|
|
|
}
|
2022-05-26 05:44:04 +02:00
|
|
|
|
|
|
|
func applyFuncOnTextContent(entryContent string, selector string, repl func(string) string) string {
|
|
|
|
var treatChildren func(i int, s *goquery.Selection)
|
|
|
|
treatChildren = func(i int, s *goquery.Selection) {
|
|
|
|
if s.Nodes[0].Type == 1 {
|
|
|
|
s.ReplaceWithHtml(repl(s.Nodes[0].Data))
|
|
|
|
} else {
|
|
|
|
s.Contents().Each(treatChildren)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
doc, err := goquery.NewDocumentFromReader(strings.NewReader(entryContent))
|
|
|
|
if err != nil {
|
|
|
|
return entryContent
|
|
|
|
}
|
|
|
|
|
|
|
|
doc.Find(selector).Each(treatChildren)
|
|
|
|
|
|
|
|
output, _ := doc.Find("body").First().Html()
|
|
|
|
return output
|
|
|
|
}
|
|
|
|
|
|
|
|
func decodeBase64Content(entryContent string) string {
|
|
|
|
if ret, err := base64.StdEncoding.DecodeString(strings.TrimSpace(entryContent)); err != nil {
|
|
|
|
return entryContent
|
|
|
|
} else {
|
|
|
|
return html.EscapeString(string(ret))
|
|
|
|
}
|
|
|
|
}
|
2022-07-27 16:55:28 +02:00
|
|
|
|
2023-09-23 22:54:48 +02:00
|
|
|
func addHackerNewsLinksUsing(entryContent, app string) string {
|
|
|
|
doc, err := goquery.NewDocumentFromReader(strings.NewReader(entryContent))
|
|
|
|
if err != nil {
|
|
|
|
return entryContent
|
|
|
|
}
|
|
|
|
|
|
|
|
hn_prefix := "https://news.ycombinator.com/"
|
|
|
|
matches := doc.Find(`a[href^="` + hn_prefix + `"]`)
|
|
|
|
|
|
|
|
if matches.Length() > 0 {
|
|
|
|
matches.Each(func(i int, a *goquery.Selection) {
|
|
|
|
hrefAttr, _ := a.Attr("href")
|
|
|
|
|
|
|
|
hn_uri, err := url.Parse(hrefAttr)
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if app == "opener" {
|
|
|
|
params := url.Values{}
|
|
|
|
params.Add("url", hn_uri.String())
|
|
|
|
|
|
|
|
url := url.URL{
|
|
|
|
Scheme: "opener",
|
|
|
|
Host: "x-callback-url",
|
|
|
|
Path: "show-options",
|
|
|
|
RawQuery: params.Encode(),
|
|
|
|
}
|
|
|
|
|
|
|
|
open_with_opener := `<a href="` + url.String() + `">Open with Opener</a>`
|
|
|
|
a.Parent().AppendHtml(" " + open_with_opener)
|
|
|
|
} else if app == "hack" {
|
|
|
|
url := strings.Replace(hn_uri.String(), hn_prefix, "hack://", 1)
|
|
|
|
|
|
|
|
open_with_hack := `<a href="` + url + `">Open with HACK</a>`
|
|
|
|
a.Parent().AppendHtml(" " + open_with_hack)
|
|
|
|
} else {
|
2023-09-25 01:32:09 +02:00
|
|
|
slog.Warn("Unknown app provided for openHackerNewsLinksWith rewrite rule",
|
|
|
|
slog.String("app", app),
|
|
|
|
)
|
2023-09-23 22:54:48 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
output, _ := doc.Find("body").First().Html()
|
|
|
|
return output
|
|
|
|
}
|
|
|
|
|
|
|
|
return entryContent
|
|
|
|
}
|
|
|
|
|
2022-07-27 16:55:28 +02:00
|
|
|
func parseMarkdown(entryContent string) string {
|
|
|
|
var sb strings.Builder
|
|
|
|
md := goldmark.New(
|
|
|
|
goldmark.WithRendererOptions(
|
|
|
|
goldmarkhtml.WithUnsafe(),
|
|
|
|
),
|
|
|
|
)
|
|
|
|
|
|
|
|
if err := md.Convert([]byte(entryContent), &sb); err != nil {
|
|
|
|
return entryContent
|
|
|
|
}
|
|
|
|
|
|
|
|
return sb.String()
|
|
|
|
}
|
2023-03-31 20:23:31 +02:00
|
|
|
|
|
|
|
func removeTables(entryContent string) string {
|
|
|
|
doc, err := goquery.NewDocumentFromReader(strings.NewReader(entryContent))
|
|
|
|
if err != nil {
|
|
|
|
return entryContent
|
|
|
|
}
|
|
|
|
|
2023-04-01 11:02:58 +02:00
|
|
|
selectors := []string{"table", "tbody", "thead", "td", "th", "td"}
|
2023-03-31 20:23:31 +02:00
|
|
|
|
2023-04-01 11:02:58 +02:00
|
|
|
var loopElement *goquery.Selection
|
2023-03-31 20:23:31 +02:00
|
|
|
|
2023-04-01 11:02:58 +02:00
|
|
|
for _, selector := range selectors {
|
|
|
|
for {
|
|
|
|
loopElement = doc.Find(selector).First()
|
2023-03-31 20:23:31 +02:00
|
|
|
|
2023-04-01 11:02:58 +02:00
|
|
|
if loopElement.Length() == 0 {
|
|
|
|
break
|
|
|
|
}
|
2023-03-31 20:23:31 +02:00
|
|
|
|
2023-04-01 11:02:58 +02:00
|
|
|
innerHtml, err := loopElement.Html()
|
|
|
|
if err != nil {
|
|
|
|
break
|
|
|
|
}
|
2023-03-31 20:23:31 +02:00
|
|
|
|
2023-04-01 11:02:58 +02:00
|
|
|
loopElement.Parent().AppendHtml(innerHtml)
|
|
|
|
loopElement.Remove()
|
|
|
|
}
|
2023-03-31 20:23:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
output, _ := doc.Find("body").First().Html()
|
|
|
|
return output
|
|
|
|
}
|
2023-04-08 11:02:36 +02:00
|
|
|
|
|
|
|
func removeClickbait(entryTitle string) string {
|
|
|
|
titleWords := []string{}
|
|
|
|
for _, word := range strings.Fields(entryTitle) {
|
|
|
|
runes := []rune(word)
|
|
|
|
if len(runes) > 1 {
|
|
|
|
// keep first rune as is to keep the first capital letter
|
|
|
|
titleWords = append(titleWords, string([]rune{runes[0]})+strings.ToLower(string(runes[1:])))
|
|
|
|
} else {
|
|
|
|
titleWords = append(titleWords, word)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return strings.Join(titleWords, " ")
|
|
|
|
}
|