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
710 B
Go
32 lines
710 B
Go
package docconv
|
|
|
|
import (
|
|
"io"
|
|
"os"
|
|
"os/exec"
|
|
)
|
|
|
|
// Tidy attempts to tidy up XML.
|
|
// Errors & warnings are deliberately suppressed as underlying tools
|
|
// throw warnings very easily.
|
|
func Tidy(r io.Reader, xmlIn bool) ([]byte, error) {
|
|
f, err := os.CreateTemp(os.TempDir(), "docconv")
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
defer os.Remove(f.Name())
|
|
io.Copy(f, r)
|
|
|
|
var output []byte
|
|
if xmlIn {
|
|
output, err = exec.Command("tidy", "-xml", "-numeric", "-asxml", "-quiet", "-utf8", f.Name()).Output()
|
|
} else {
|
|
output, err = exec.Command("tidy", "-numeric", "-asxml", "-quiet", "-utf8", f.Name()).Output()
|
|
}
|
|
|
|
if err != nil && err.Error() != "exit status 1" {
|
|
return nil, err
|
|
}
|
|
return output, nil
|
|
}
|