Full Mattermost server source with integrated Community Enterprise features. Includes vendor directory for offline/air-gapped builds. Structure: - enterprise-impl/: Enterprise feature implementations - enterprise-community/: Init files that register implementations - enterprise/: Bridge imports (community_imports.go) - vendor/: All dependencies for offline builds Build (online): go build ./cmd/mattermost Build (offline/air-gapped): go build -mod=vendor ./cmd/mattermost 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
32 lines
635 B
Go
32 lines
635 B
Go
package docconv
|
|
|
|
import (
|
|
"bytes"
|
|
"io"
|
|
|
|
"github.com/advancedlogic/GoOse"
|
|
)
|
|
|
|
// ConvertURL fetches the HTML page at the URL given in the io.Reader.
|
|
func ConvertURL(input io.Reader, readability bool) (string, map[string]string, error) {
|
|
meta := make(map[string]string)
|
|
|
|
buf := new(bytes.Buffer)
|
|
_, err := buf.ReadFrom(input)
|
|
if err != nil {
|
|
return "", nil, err
|
|
}
|
|
|
|
g := goose.New()
|
|
article, err := g.ExtractFromURL(buf.String())
|
|
if err != nil {
|
|
return "", nil, err
|
|
}
|
|
|
|
meta["title"] = article.Title
|
|
meta["description"] = article.MetaDescription
|
|
meta["image"] = article.TopImage
|
|
|
|
return article.CleanedText, meta, nil
|
|
}
|