mirror of
https://github.com/rwinkhart/glamour-temp-MUTN.git
synced 2026-08-28 04:46:29 -04:00
4292a2106d741f63f6d9c531f65dd32dfafa89f8
https://github.com/yuin/goldmark/commit/9e0189df270cb443c204b51e89e2b0749b98370c broke backwards compatibility by renaming exported structs without a bump of the module's major version. This commit updates glamour to use goldmark's new API.
Glamour
Write handsome command-line tools with glamour!
glamour lets you render markdown
documents & templates on ANSI
compatible terminals. You can create your own stylesheet or use one of our
glamourous default themes.
Usage
import "github.com/charmbracelet/glamour"
in := `# Hello World
This is a simple example of glamour!
Check out the [other examples](https://github.com/charmbracelet/glamour/tree/master/examples).
Bye!
`
out, err := glamour.Render(in, "dark")
fmt.Print(out)
Custom Renderer
import "github.com/charmbracelet/glamour"
r, _ := glamour.NewTermRenderer(
// detect background color and pick either the default dark or light theme
glamour.WithAutoStyle(),
// wrap output at specific width
glamour.WithWordWrap(40),
)
out, err := r.Render(in)
fmt.Print(out)
Styles
You can find all available default styles in our gallery. Want to create your own style? Learn how!
There are a few options for using a custom style:
- Call
glamour.Render(inputText, "desiredStyle") - Set the
GLAMOUR_STYLEenvironment variable to your desired default style or a file location for a style and callglamour.RenderWithEnvironmentConfig(inputText) - Set the
GLAMOUR_STYLEenvironment variable and passglamour.WithEnvironmentConfig()to your custom renderer
Glamourous Projects
Check out these projects, which use glamour:
- Glow, a markdown renderer for the command-line.
- GitHub CLI, GitHub’s official command line tool.
- GLab, An open source GitLab command line tool.
License
Part of Charm.
Charm热爱开源! / Charm loves open source!
Languages
Go
98.5%
Shell
1.5%


