mirror of
https://gitea.com/gitea/tea.git
synced 2024-11-03 04:27:21 -05:00
b8dbf899d2
- The go-sdk update fixes #463 - To review the other updates: - glamour [changelog](https://github.com/charmbracelet/glamour/releases), [diff](https://github.com/charmbracelet/glamour/compare/v0.3.0...v0.5.0) - enhancement: we now can use `WithPreservedNewLines()` to render markdow the same way as the web ui - termenv [changelog](https://github.com/muesli/termenv/releases), [diff](https://github.com/muesli/termenv/compare/v0.9.0...v0.12.0) - enhancement: correct feature detection for more terminals - xdg [changelog](https://github.com/adrg/xdg/releases), [diff](https://github.com/adrg/xdg/compare/v0.3.3...v0.4.0) - no notable changes for us, but good to stay up to date 🤷 - survey [changelog](https://github.com/AlecAivazis/survey/releases), [diff](https://github.com/AlecAivazis/survey/compare/v2.3.1...v2.3.6) - bugfixes - cli [changelog](https://github.com/urfave/cli/releases), [diff](https://github.com/urfave/cli/compare/v2.3.0...v2.16.3) - bugfixes? Co-authored-by: Norwin <git@nroo.de> Reviewed-on: https://gitea.com/gitea/tea/pulls/501 Reviewed-by: techknowlogick <techknowlogick@gitea.io> Reviewed-by: 6543 <6543@obermui.de> Co-authored-by: Norwin <noerw@noreply.gitea.io> Co-committed-by: Norwin <noerw@noreply.gitea.io>
53 lines
1.1 KiB
Go
53 lines
1.1 KiB
Go
// Copyright 2020 The Gitea Authors. All rights reserved.
|
|
// Use of this source code is governed by a MIT-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package print
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
|
|
"github.com/charmbracelet/glamour"
|
|
"golang.org/x/crypto/ssh/terminal"
|
|
)
|
|
|
|
// outputMarkdown prints markdown to stdout, formatted for terminals.
|
|
// If the input could not be parsed, it is printed unformatted, the error
|
|
// is returned anyway.
|
|
func outputMarkdown(markdown string, baseURL string) error {
|
|
renderer, err := glamour.NewTermRenderer(
|
|
glamour.WithAutoStyle(),
|
|
glamour.WithBaseURL(baseURL),
|
|
glamour.WithPreservedNewLines(),
|
|
glamour.WithWordWrap(getWordWrap()),
|
|
)
|
|
if err != nil {
|
|
fmt.Printf(markdown)
|
|
return err
|
|
}
|
|
|
|
out, err := renderer.Render(markdown)
|
|
if err != nil {
|
|
fmt.Printf(markdown)
|
|
return err
|
|
}
|
|
fmt.Print(out)
|
|
return nil
|
|
}
|
|
|
|
// stolen from https://github.com/charmbracelet/glow/blob/e9d728c/main.go#L152-L165
|
|
func getWordWrap() int {
|
|
fd := int(os.Stdout.Fd())
|
|
width := 80
|
|
if terminal.IsTerminal(fd) {
|
|
if w, _, err := terminal.GetSize(fd); err == nil {
|
|
width = w
|
|
}
|
|
}
|
|
if width > 120 {
|
|
width = 120
|
|
}
|
|
return width
|
|
}
|