Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gohugoio/hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHelder Pereira <helfper@gmail.com>2021-08-21 13:46:18 +0300
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2021-08-21 16:50:49 +0300
commitd966f5d08d7f75f1ae9acd94e292bf61de2adf0d (patch)
tree38e8f633a8df0acfe97581d4686efa66a3178a7a /commands
parent3f38c785b7208440e2a9dd9a80cb39d4ae23e676 (diff)
highlight: Remove some pygments references
Diffstat (limited to 'commands')
-rw-r--r--commands/genchromastyles.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/commands/genchromastyles.go b/commands/genchromastyles.go
index 53fb2be6a..a2476ffdf 100644
--- a/commands/genchromastyles.go
+++ b/commands/genchromastyles.go
@@ -37,9 +37,9 @@ func createGenChromaStyles() *genChromaStyles {
baseCmd: newBaseCmd(&cobra.Command{
Use: "chromastyles",
Short: "Generate CSS stylesheet for the Chroma code highlighter",
- Long: `Generate CSS stylesheet for the Chroma code highlighter for a given style. This stylesheet is needed if pygmentsUseClasses is enabled in config.
+ Long: `Generate CSS stylesheet for the Chroma code highlighter for a given style. This stylesheet is needed if markup.highlight.noClasses is disabled in config.
-See https://help.farbox.com/pygments.html for preview of available styles`,
+See https://xyproto.github.io/splash/docs/all.html for a preview of the available styles`,
}),
}
@@ -47,7 +47,7 @@ See https://help.farbox.com/pygments.html for preview of available styles`,
return g.generate()
}
- g.cmd.PersistentFlags().StringVar(&g.style, "style", "friendly", "highlighter style (see https://help.farbox.com/pygments.html)")
+ g.cmd.PersistentFlags().StringVar(&g.style, "style", "friendly", "highlighter style (see https://xyproto.github.io/splash/docs/)")
g.cmd.PersistentFlags().StringVar(&g.highlightStyle, "highlightStyle", "bg:#ffffcc", "style used for highlighting lines (see https://github.com/alecthomas/chroma)")
g.cmd.PersistentFlags().StringVar(&g.linesStyle, "linesStyle", "", "style used for line numbers (see https://github.com/alecthomas/chroma)")