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
path: root/markup
diff options
context:
space:
mode:
Diffstat (limited to 'markup')
-rw-r--r--markup/goldmark/render_hooks.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/markup/goldmark/render_hooks.go b/markup/goldmark/render_hooks.go
index 0e942e6f5..9e9ca1976 100644
--- a/markup/goldmark/render_hooks.go
+++ b/markup/goldmark/render_hooks.go
@@ -148,8 +148,9 @@ var (
// Attributes with special meaning that does not make sense to render in HTML.
attributeExcludes = map[string]bool{
- "linenos": true,
"hl_lines": true,
+ "hl_style": true,
+ "linenos": true,
"linenostart": true,
}
)