Skip to content

Commit 2db43f8

Browse files
jmooringbep
authored andcommitted
markup/highlight: Remove noHl option
Closes #9885
1 parent 46ce1f1 commit 2db43f8

File tree

3 files changed

+1
-8
lines changed

3 files changed

+1
-8
lines changed

‎markup/highlight/config.go

-6
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ const (
3333
lineNosKey = "linenos"
3434
hlLinesKey = "hl_lines"
3535
linosStartKey = "linenostart"
36-
noHlKey = "nohl"
3736
)
3837

3938
var DefaultConfig = Config{
@@ -60,9 +59,6 @@ type Config struct {
6059
// Use inline CSS styles.
6160
NoClasses bool
6261

63-
// No highlighting.
64-
NoHl bool
65-
6662
// When set, line numbers will be printed.
6763
LineNos bool
6864
LineNumbersInTable bool
@@ -234,8 +230,6 @@ func normalizeHighlightOptions(m map[string]any) {
234230

235231
for k, v := range m {
236232
switch k {
237-
case noHlKey:
238-
m[noHlKey] = cast.ToBool(v)
239233
case lineNosKey:
240234
if v == "table" || v == "inline" {
241235
m["lineNumbersInTable"] = v == "table"

‎markup/highlight/highlight.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ func highlight(fw hugio.FlexiWriter, code, lang string, attributes []attributes.
168168
lexer = chromalexers.Get(lang)
169169
}
170170

171-
if lexer == nil && (cfg.GuessSyntax && !cfg.NoHl) {
171+
if lexer == nil && cfg.GuessSyntax {
172172
lexer = lexers.Analyse(code)
173173
if lexer == nil {
174174
lexer = lexers.Fallback

‎markup/internal/attributes/attributes.go

-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ var chromaHighlightProcessingAttributes = map[string]bool{
3636
"lineNoStart": true,
3737
"lineNumbersInTable": true,
3838
"noClasses": true,
39-
"nohl": true,
4039
"style": true,
4140
"tabWidth": true,
4241
}

0 commit comments

Comments
 (0)