feat: use (exported) consts for default styles (#232)

This commit is contained in:
Christian Rocha
2023-05-19 09:14:05 -04:00
committed by GitHub
parent cd217b9c0f
commit 7528eaad66
4 changed files with 23 additions and 12 deletions
+1 -1
View File
@@ -3,7 +3,7 @@ package fuzzing
import "github.com/charmbracelet/glamour"
func Fuzz(data []byte) int {
_, err := glamour.RenderBytes(data, "dark")
_, err := glamour.RenderBytes(data, glamour.DarkStyle)
if err != nil {
return 0
}