summaryrefslogtreecommitdiffstats
path: root/markup/highlight
diff options
context:
space:
mode:
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2023-01-04 18:24:36 +0100
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2023-05-16 18:01:29 +0200
commit241b21b0fd34d91fccb2ce69874110dceae6f926 (patch)
treed4e0118eac7e9c42f065815447a70805f8d6ad3e /markup/highlight
parent6aededf6b42011c3039f5f66487a89a8dd65e0e7 (diff)
Create a struct with all of Hugo's config options
Primary motivation is documentation, but it will also hopefully simplify the code. Also, * Lower case the default output format names; this is in line with the custom ones (map keys) and how it's treated all the places. This avoids doing `stringds.EqualFold` everywhere. Closes #10896 Closes #10620
Diffstat (limited to 'markup/highlight')
-rw-r--r--markup/highlight/config.go2
-rw-r--r--markup/highlight/highlight.go4
2 files changed, 4 insertions, 2 deletions
diff --git a/markup/highlight/config.go b/markup/highlight/config.go
index b1f6d4603..ca065fd2d 100644
--- a/markup/highlight/config.go
+++ b/markup/highlight/config.go
@@ -84,7 +84,7 @@ type Config struct {
GuessSyntax bool
}
-func (cfg Config) ToHTMLOptions() []html.Option {
+func (cfg Config) toHTMLOptions() []html.Option {
var lineAnchors string
if cfg.LineAnchors != "" {
lineAnchors = cfg.LineAnchors + "-"
diff --git a/markup/highlight/highlight.go b/markup/highlight/highlight.go
index 410beb740..cb0d578de 100644
--- a/markup/highlight/highlight.go
+++ b/markup/highlight/highlight.go
@@ -148,10 +148,12 @@ func (h chromaHighlighter) IsDefaultCodeBlockRenderer() bool {
var id = identity.NewPathIdentity("chroma", "highlight")
+// GetIdentify is for internal use.
func (h chromaHighlighter) GetIdentity() identity.Identity {
return id
}
+// HightlightResult holds the result of an highlighting operation.
type HightlightResult struct {
innerLow int
innerHigh int
@@ -211,7 +213,7 @@ func highlight(fw hugio.FlexiWriter, code, lang string, attributes []attributes.
writeDivStart(w, attributes)
}
- options := cfg.ToHTMLOptions()
+ options := cfg.toHTMLOptions()
var wrapper html.PreWrapper
if cfg.Hl_inline {