We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b07c643 commit 07f6bdeCopy full SHA for 07f6bde
internal/migration/list/list.go
@@ -7,6 +7,7 @@ import (
7
"strconv"
8
9
"github.com/charmbracelet/glamour"
10
+ "github.com/charmbracelet/glamour/styles"
11
"github.com/go-errors/errors"
12
"github.com/jackc/pgconn"
13
"github.com/jackc/pgx/v4"
@@ -73,7 +74,7 @@ func makeTable(remoteMigrations, localMigrations []string) string {
73
74
75
func RenderTable(markdown string) error {
76
r, err := glamour.NewTermRenderer(
- glamour.WithAutoStyle(),
77
+ glamour.WithStandardStyle(styles.AsciiStyle),
78
glamour.WithWordWrap(-1),
79
)
80
if err != nil {
0 commit comments