# Glamour

Glamour Title Treatment
Latest Release GoDoc Build Status Coverage Status Go ReportCard

Stylesheet-based markdown rendering for your CLI apps. ![Glamour dark style example](https://stuff.charm.sh/glamour/glamour-example.png) `glamour` lets you render [markdown](https://en.wikipedia.org/wiki/Markdown) documents & templates on [ANSI](https://en.wikipedia.org/wiki/ANSI_escape_code) compatible terminals. You can create your own stylesheet or simply use one of the stylish defaults. ## Usage ```go import "github.com/charmbracelet/glamour" in := `# Hello World This is a simple example of Markdown rendering with Glamour! Check out the [other examples](https://github.com/charmbracelet/glamour/tree/master/examples) too. Bye! ` out, err := glamour.Render(in, "dark") fmt.Print(out) ``` Hello World example ### Custom Renderer ```go 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](https://github.com/charmbracelet/glamour/tree/master/styles/gallery). Want to create your own style? [Learn how!](https://github.com/charmbracelet/glamour/tree/master/styles) There are a few options for using a custom style: 1. Call `glamour.Render(inputText, "desiredStyle")` 1. Set the `GLAMOUR_STYLE` environment variable to your desired default style or a file location for a style and call `glamour.RenderWithEnvironmentConfig(inputText)` 1. Set the `GLAMOUR_STYLE` environment variable and pass `glamour.WithEnvironmentConfig()` to your custom renderer ## Glamourous Projects Check out these projects, which use `glamour`: - [Glow](https://github.com/charmbracelet/glow), a markdown renderer for the command-line. - [GitHub CLI](https://github.com/cli/cli), GitHub’s official command line tool. - [GLab](https://github.com/profclems/glab), An open source GitLab command line tool. ## License [MIT](https://github.com/charmbracelet/glamour/raw/master/LICENSE) *** Part of [Charm](https://charm.sh). The Charm logo Charm热爱开源 • Charm loves open source