Skip to content

Releases: charmbracelet/glamour

v0.8.0

05 Aug 17:56
29b800e
Compare
Choose a tag to compare

Fixing (almost) everything

With a ton of rendering fixes, she's sparkling ✨

It has that new car smell...

So many fixes…one man

@caarlos0 fixed a whopping 15 issues with PR #317 🥇

  • Fix URL links not rendering inside bold text #312
  • Fix autolink element rendering #290
  • Add support for backslash escapes #106
  • Fix cases when backslash should not be shown #274
  • Fix escape character rendering #311
  • Fix newlines in definition lists #239
  • Fix nested blockquotes rendering #313
  • Fix block quote accidentally combining lines #237
  • Fix document-level indent causing unintended wrapping after quoted lines #68

Better tables

Tables now provide stable rendering of elements within the table including alignment, text styles, all that jazz. It now uses the lipgloss table, making it much more consistent across the board.

  • Render tables with Lip Gloss #262
  • Refactor to replace TableWriter with Lip Gloss table #254
  • Fix inline code within table #315
  • Fix links in tables #316
  • Provide consistent alignment of table elements #60
  • Support alignment in tables #117

New! Tokyo Night

The markdown renderer’s equivalent of a mani-pedi 💅

Tokyo Night is now a built-in style for Glamour. This means you'll be able to use it in the next release of Glow.

glow -s "tokyo-night"
# OR
export GLAMOUR_STYLE="tokyo-night"

Tokyo Night x Glamour

Check out the custom style example to learn how to support custom styles in your own Glamour apps.

No TTY?

Glamour will now check if stdout is a tty and will strip styles when it is not.

Other Stuff

New Contributors

Full Changelog: v0.7.0...v0.8.0


The Charm logo

Thoughts? Questions? We love hearing from you. Feel free to reach out on Twitter, The Fediverse, or Discord.


This discussion was created from the release v0.8.0.

v0.7.0

26 Mar 13:24
c271197
Compare
Choose a tag to compare

Fixes ’n’ Things

Fixed

Changes

  • feat: use (exported) consts for default styles by @meowgorithm in #232
  • Bump github.com/alecthomas/chroma/v2 from 2.7.0 to 2.8.0 by @dependabot in #243

New Contributors

Full Changelog: v0.6.0...v0.7.0


The Charm logo

Thoughts? Questions? We love hearing from you. Feel free to reach out on Twitter, The Fediverse, or Discord.

v0.6.0

09 Nov 16:56
Compare
Choose a tag to compare

Pink theme and general maintenance

Fixed

Added

Changes

  • Bump github.com/muesli/termenv to 0.13.0
  • Bump github.com/yuin/goldmark to 1.5.2
  • Bump github.com/microcosm-cc/bluemonday to 1.0.21

New Contributors

Full Changelog: v0.5.0...v0.6.0


The Charm logo

Thoughts? Questions? We love hearing from you. Feel free to reach out on Twitter, The Fediverse, or Discord.

v0.5.0

24 Jan 16:29
94148ad
Compare
Choose a tag to compare

Hello, Dracula

Added

  • Ship with built-in Dracula color scheme (#137)
package main

import (
        "fmt"
        "github.com/charmbracelet/glamour"
)

func main() {
        in := "# Hello World\n\nThis is a simple example of Markdown rendering with Glamour!"

        out, _ := glamour.Render(in, "dracula")
        fmt.Println(out)
}

v0.4.0

13 Jan 14:42
Compare
Choose a tag to compare

Fixed

  • Correctly render lists that don't start at 1 (#116)

Added

  • Optionally Preserving New Lines (#115)
  • Implement Capitalization (#118)
  • Added Dracula color scheme

Changes

  • Use goldmark v1.4.4
  • Use termenv v0.9.0
  • Use reflow v0.3.0
  • Use chroma v0.10.0
  • Use bluemonday v1.0.17

v0.3.0

09 Apr 15:57
Compare
Choose a tag to compare

Fixed

  • Read default styles before reading from the file system (#73)

Added

  • Add support for :emoji: (#92)

Changes

  • Use goldmark v1.3.3
  • Use termenv v0.8.1
  • Use reflow v0.2.0
  • Use chroma v0.8.2
  • Use bluemonday v1.0.6

v0.2.0

22 Jul 20:20
28b4a5c
Compare
Choose a tag to compare

Added

  • auto style automatically determines correct style for current terminal settings
  • Support for GLAMOUR_STYLE environment variable

Changes

  • Use goldmark v1.2.0
  • Use termenv v0.6.0 to detect terminal capabilities
  • Use chroma v0.7.3

v0.1.0

09 Jan 14:52
v0.1.0
Compare
Choose a tag to compare

Write handsome command-line tools with glamour!