Initial commit.
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
package fixers
|
||||
|
||||
type fixerFunc func(title, body string) (string, string)
|
||||
|
||||
var fixers = map[string]fixerFunc{
|
||||
"www.opennet.ru": opennetFixer,
|
||||
}
|
||||
|
||||
// Fix fixes title and body depending on site parsed.
|
||||
func Fix(domain, title, body string) (string, string) {
|
||||
fixer, found := fixers[domain]
|
||||
if !found {
|
||||
return title, body
|
||||
}
|
||||
|
||||
return fixer(title, body)
|
||||
}
|
||||
@@ -0,0 +1,17 @@
|
||||
package fixers
|
||||
|
||||
import "strings"
|
||||
|
||||
func opennetFixer(title, body string) (string, string) {
|
||||
newBody := &strings.Builder{}
|
||||
|
||||
for line := range strings.Lines(body) {
|
||||
if strings.HasPrefix(line, "Источник") {
|
||||
continue
|
||||
}
|
||||
|
||||
_, _ = newBody.WriteString(line)
|
||||
}
|
||||
|
||||
return title, newBody.String()
|
||||
}
|
||||
Reference in New Issue
Block a user