add FAQ for Using Hugo's Syntax highlighter "chroma"

This commit is contained in:
Aditya Telange 2021-01-22 00:18:17 +05:30
parent 9a25e81bb1
commit 4fad5dce34
No known key found for this signature in database
GPG Key ID: 82E844EF3DA99E77
3 changed files with 55 additions and 0 deletions

View File

@ -173,6 +173,15 @@ taxonomies:
tag: tags tag: tags
series: series series: series
# markup:
# highlight:
# # anchorLineNos: true
# codeFences: true
# guessSyntax: true
# lineNos: true
# # noClasses: false
# style: monokai
privacy: privacy:
vimeo: vimeo:
disabled: false disabled: false

View File

@ -270,6 +270,43 @@ Add `#center` after image to center align an image
--- ---
## Using Hugo's Syntax highlighter "chroma"
1. Disable Highlight.js in site `config.yml`
```yml
params:
assets:
disableHLJS: true
```
2. Set hugo's markdown styling in site `config.yml`
```yml
markup:
highlight:
# anchorLineNos: true
codeFences: true
guessSyntax: true
lineNos: true
# noClasses: false
style: monokai
```
3. If you want `lineNos: true`, the background won't be proper.
Add the following to `assets/css/extended/custom.css`
```css
.chroma {
background-color: unset;
}
```
More Info : [Configure Markup - Highlight](https://gohugo.io/getting-started/configuration-markup#highlight)
---
## References ## References
- [Override a Hugo theme](https://zwbetz.com/override-a-hugo-theme/) - [Override a Hugo theme](https://zwbetz.com/override-a-hugo-theme/)

View File

@ -196,6 +196,15 @@ menu:
name: example.org name: example.org
url: https://example.org url: https://example.org
weight: 30 weight: 30
# Read: https://github.com/adityatelange/hugo-PaperMod/wiki/FAQs#using-hugos-syntax-highlighter-chroma
# markup:
# highlight:
# # anchorLineNos: true
# codeFences: true
# guessSyntax: true
# lineNos: true
# # noClasses: false
# style: monokai
``` ```
--- ---