Hi - I am using the highlight shortcode with line numbering enabled. However, the line numbering stops at 30 (see attached screenshot).
Hugo v0.110.0
In my markdown file:
{{< highlight yaml "linenos=table" >}}
version: v1
kind: kubernetes
application: potato-facts
targets:
staging:
account: sample-cluster
namespace: potato-facts-staging
strategy: rolling
prod:
account: sample-cluster
namespace: potato-facts-prod
strategy: rolling
constraints:
dependsOn: ["staging"]
manifests:
- path: manifests/potato-facts-v1.yaml
- path: manifests/potato-facts-service.yaml
- path: manifests/staging-namespace.yaml
targets: ["staging"]
- path: manifests/prod-namespace.yaml
targets: ["prod"]
strategies:
rolling:
canary:
steps:
- setWeight:
weight: 100
trafficManagement:
kubernetes:
- activeService: potato-facts-svc
{{< / highlight >}}
config.toml
# code highlighting
[markup]
[markup.goldmark]
[markup.goldmark.renderer]
unsafe = true
[markup.highlight]
guessSyntax = false
style = 'tango'
tabWidth = 2
Is this a bug in the shortcode or do I have something misconfigured?
Thanks.